Why C Pointers?

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

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

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

    Instead of those long hours video lectures, these kind of (to the point) videos are best

  • @pietraderdetective8953
    @pietraderdetective8953 Месяц назад +1

    I always love a good C video!
    However you can make the video even better by adhering to modern C standard instead of classic C.
    For example there's a comment about using fgets and sscanf instead of just scanf (considered to be dangerous function according to modern C standard).
    C11 is considered to be the point where plenty of safer C functions were introduced. Writing C is like sex: do it safely and responsibly.

  • @foxinrot
    @foxinrot 3 месяца назад +7

    although i knew what a pointer is i watched this. is short well made and to the point
    only thing i'd add is the output of the code shown rather than just explaining / reading it out.

    • @thedoubleeguy
      @thedoubleeguy  3 месяца назад +3

      Thank you for the feedback, I will implement that in future videos!

  • @StudyYourself-ee5wn
    @StudyYourself-ee5wn 3 месяца назад +1

    Omg what a Exaplantion bro thanks for this amazing content..

  • @anubhavmishra295
    @anubhavmishra295 3 месяца назад +2

    helped me a lot buddy, thanks a bunch!!!

  • @baracapy-q9l
    @baracapy-q9l 2 месяца назад

    i hope you talk about this in every single thing in c , for example : malloc function wha does it do , how it allocate , you talk about static variablies , Visualizing Static Variables are they reserved in heap or stack , why they don't popout after use like just normal variables , Because we know , first in last out so after we print them they should popout , when they popout etc...
    i hope you do this in future and thanks again for the informations here

    • @thedoubleeguy
      @thedoubleeguy  2 месяца назад +1

      of course, I hope that I can continue to provide detailed explanations in future videos, I believe this will help build intuition for a new generation of C programmers.

    • @baracapy-q9l
      @baracapy-q9l 2 месяца назад

      @@thedoubleeguy you just made my day , infinite thanks to you man

  • @mccauleybacalla2228
    @mccauleybacalla2228 3 месяца назад +1

    Thank you!! any chance you can share us the code like put in the description or comment sectionn?

    • @thedoubleeguy
      @thedoubleeguy  3 месяца назад

      hey @mccauleybacalla2228 for this video I coded these examples on the fly and deleted them afterward, but in future videos I'll make sure to save the code so its accessible for everyone, great idea my friend.

  • @Rohit-48
    @Rohit-48 3 месяца назад

    good.

  • @anon_y_mousse
    @anon_y_mousse 2 месяца назад +1

    Just some random advice, but you probably shouldn't use scanf at all. Instead, you should probably use fgets coupled with sscanf. Alternatively, depending on the input you wish to take, you might consider using the functions in string.h and functions from stdlib.h like strto(d,f,l).