All you need to know about the command line arguments argc and *argv[ ]

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024

Комментарии • 22

  • @dariabuyanovsky8033
    @dariabuyanovsky8033 Год назад +4

    Love your videos and you explanation for them. You make hard materials easy to understand. I need to make my first project in c....and I'm searching all RUclips to find how do I do it.

    • @onaecO
      @onaecO  Год назад +4

      Dear Daria, thx very much. Just trying to create the page i needed for myself when i started all this “self taught programming” deal. Which project do you have to do?

    • @dariabuyanovsky8033
      @dariabuyanovsky8033 Год назад +1

      @@onaecO now I need to write a program that make different operations on sets. Like read_set ....
      read_set SETA, 5, 6, 5, 76, 44....-1
      this function need to place them in order by bits. It will place the group 5, 6, 44, 76 to SETA.
      if the group has no numbers beside -1 the group is empty.
      union_set, intersect_set, sub_set,

    • @onaecO
      @onaecO  Год назад +2

      Mh i understand, have you tried with AI given that u cannot find nothing online?
      chat.openai.com/chat
      This tool is 🔥

    • @dariabuyanovsky8033
      @dariabuyanovsky8033 Год назад +1

      @@onaecO Thanks a lot 🙏 💓

  • @user-fcds
    @user-fcds Год назад

    Tenho gostado muito dos seus vídeos.
    Mas gostava de saber se o projeto transcender que sw aprende na piscina ou quando ja se é aluno?

  • @ambermartinez2616
    @ambermartinez2616 2 месяца назад

    Thank you!

  • @marcelajimenez7482
    @marcelajimenez7482 4 месяца назад

    Thank you very much❤️❤️

  • @tashiyassin4455
    @tashiyassin4455 7 месяцев назад

    thank you very much

  • @Pvcdr
    @Pvcdr Год назад

    Your explanation are always so clear thank you so much. Are you going to do the rest of the school program ?

    • @onaecO
      @onaecO  Год назад +5

      Dear friend, thx so much for the kind words!
      The final goal of this yt page is to create a “42 library” where students can get a real clear picture on the task, where comments are very very very important (maybe more than the videos, given i m just a student as well and not a teacher 😃). Currently i m doing the cursus, time is not that much but for sure i ll keep this thing alive. Like now i m doing an intro course-videos about C (the one i needed like hell to save myself in my piscine 🤣), for sure I’ll share cursus projects , the rest of the piscine probably in a second moment ;)

  • @amireid8496
    @amireid8496 Год назад

    Hey, i tried this method in the last test and Molinette just gave me back a segmentation fault…what shouldi do

    • @onaecO
      @onaecO  Год назад

      Friend this code is not checked by moulinette, i just did the exercises myself, there are probably strange corner cases like NULL pointers as inputs i guess. Btw moulinette gives u the inputs where the code broke, from there is easy to understand what happened ;)

  • @Sencires
    @Sencires Год назад +1

    Great content! Got my sub

    • @onaecO
      @onaecO  Год назад +2

      Thx my friend! u won t regret

  • @Mcblowblow
    @Mcblowblow Год назад

    love you man

  • @simonmarabi2661
    @simonmarabi2661 9 месяцев назад

    very nice video

  • @xvanichx
    @xvanichx Год назад

    Thanks!!)))))

    • @onaecO
      @onaecO  Год назад

      Thx you my friend ;)

  • @astralfoxy1787
    @astralfoxy1787 Месяц назад

    3:14 - That's not right. It is a array of pointers to char.
    Some people said "Oh, it's a pointer to array" what doesn't right cause pointer to array looks like this: char (*ptr)[]
    But author variant should looks like: "char* (*ptr)[]

    • @trickyepithet9122
      @trickyepithet9122 7 дней назад

      ye because its a function parameter. and more specifically its an array of pointers to the command line arguments