I understood everything you articulated here, not because i am smart but because of the fact that you are good at this . Thanks a lot.
@IB_info2 жыл бұрын
maPoint azonyanya😁😅
@kasta8673 жыл бұрын
Thanks for the clear explanation! I'm self teaching myself C in my free time and these videos are a godsend! You university classes would be a delight to attend!
@Ashishchabha2 жыл бұрын
Same here. This is very deeply explained and very clearly.Hats off keep it up
@wiseskeshom4673 Жыл бұрын
Thank you so much for this informative session. Your students are very lucky that they have a great professor like you.
@rnma14Ай бұрын
I am currently studying imperative programming in C and this video helps a great deal for understanding! Thank you!
@genryheorge9614 Жыл бұрын
Excellent introduction to C modularization. I'm glad I watched the intro in it's entirety. Ending with symbols, symbol tables, and 'objdump -d' on the object and executable files was kickass, THANK YOU.
@achrafBadiry Жыл бұрын
This video has helped me a lot when writing my project assignment. Thank you very much sir !
@davidvella71413 жыл бұрын
Great video. I was struggling to get my head around some of this stuff but your explanation is great.
@DrJamesMP Жыл бұрын
Thank you - this is really SO helpful. From another self-learner :)
@venonnegro3 жыл бұрын
Great video, now that I understand more how to create those modules I can improve my code.
@aloncarmelly2824 жыл бұрын
Thank you for this video. Also went over the code example you use in this video to further advance my C abilities.
@viktorvasylyk44552 жыл бұрын
Thanks for understanding the header files.
@leonardoferreiracalazans9210 Жыл бұрын
Wow! Very good explanation! Thanks!
@WalaSTH3 жыл бұрын
Thanks a lot! It is very clear now
@MrTaandreo2 жыл бұрын
Excellent explanation !
@shisanliu63142 жыл бұрын
Thank you! The explanation is very clear!
@joel2301823 жыл бұрын
so well articulated. Great video
@cnydo3 жыл бұрын
Great Explanation
@dmitryvilyuzhanin35992 жыл бұрын
Great course!
@taufiqurrahmansagafkelrey283318 күн бұрын
Thankyou!!
@ultrahalf3 жыл бұрын
Great tutorial 👍
@Good0Music0for0you2 жыл бұрын
Thank you very much .
@IndianofficialCinema-y4h3 жыл бұрын
Thank you sir for awesome video tutorial
@austinstephen5412 жыл бұрын
So helpful!
@juliusnewman20943 жыл бұрын
Would you mind organizing all of your C programming videos into their own playlist please?
@KrisJordan3 жыл бұрын
You can find the overarching list here: kzbin.info/aero/PLKUb7MEve0TjHQSKUWChAWyJPCpYMRovO
@juliusnewman20943 жыл бұрын
@@KrisJordan Thank you.
@thinkverse942 жыл бұрын
just superb! give more videos on gcc, make etc ... thanks a lot :)
@exe.m1dn1ght Жыл бұрын
god bless you , i was curious how C programmers deal with complexity without having entities like "objects".. turns out they have these modules which is doing the same thing as objects, modularizing your code and making it easier to debug and maintain
@realtopg3 жыл бұрын
You sir, are invited to my wedding!
@KrisJordan3 жыл бұрын
What's the date?
@arnabmukherjee58403 жыл бұрын
neat gold..
@marinhaalternativa38292 жыл бұрын
i liked it, but now that youtube have in video timestamps, it would help more when looking back for a specific topic mentioned
@myhumblebeginnings2 жыл бұрын
Sorry, I am still noob. Where are the library of commands located? .h or .c?
@powerstar8173 жыл бұрын
Yo!!! Kris Jordan Mama.. Why don't you share your presenatation!. It would be helpful for me to look back again. thanks for the video. It was really helpful.
@umair73544 жыл бұрын
Which plug in you are using for c? Does it also have suggestions for c++?
@KrisJordan4 жыл бұрын
The vim plugin is YouCompleteMe and it does have C++ support.
@derkeiler25733 жыл бұрын
Do i have to include a .h file in its belonging .c file?
@KrisJordan3 жыл бұрын
Only if you need forward declarations, but it's a good practice to go ahead and include so you've got less complexity to keep track of in your head.
@derkeiler25733 жыл бұрын
@@KrisJordan thank you Kris!
@SphereofTime5 ай бұрын
6:00
@nhanNguyen-wo8fy Жыл бұрын
30:20
@ajitsakri98882 жыл бұрын
can POINT_H be point_h?
@KrisJordan2 жыл бұрын
Yes, but stylistically discouraged because it is hard to tell the difference between it and an actual identifier. The _h helps, but you'll more commonly see these capitalized.
@ajitsakri98882 жыл бұрын
@@KrisJordan Got it kris, thank you. Your video helped me at my job, so you saved my day!!
@Grassmpl Жыл бұрын
Modules? Over which ring?
@hunterkohler36973 жыл бұрын
This tutorial is going to get a lot more confusing if people start hearing about the precisely named c++20 'modules'
@johnjoyce8 ай бұрын
Module is the wrong term here and may be confusing.
@martijnb33815 ай бұрын
It think it is called a "Unit of compilation" the linker will connect all public (non static) symbols.