seems so simple but this type of video is what the YT programming-tutorial community is missing. Quick, succinct, factual, and to the point. Thanks. Your vids on C fundamentals are a huge help
@yessirski78689 ай бұрын
6 years later and they is coming in clutch for my midterm I have coming up in the morning! Thank you! 6 years later and still informative and relevant.
@michalbotor2 жыл бұрын
fantastic explanation of why we need to use #define PRODUCT(X, Y) (X) * (Y) instead of #define PRODUCT(X, Y) X * Y your videos are so easy to understand! you make me start loving c!
@berkcan24394 жыл бұрын
Have you realize that the videos that have low views are real informative videos especially programming language videos. Thanks you so much it is gonna be useful assert function parameters i guess.
@johncody427110 ай бұрын
Fantastic vid! This was a perfect reminder of what macros are & what they can do & a common pitfall!
@mansbjork5721 Жыл бұрын
I'm working with C for a course at my university and this is quite helpful.
@nephewtechnologies10 ай бұрын
Fascinating! Really good introduction. Thank you!
@shahqu5dohcoh9ri883 жыл бұрын
Why does this video have so few visuals??? It's fantastic, as all your videos
@Trox_t Жыл бұрын
Visuals
@fluffyweird Жыл бұрын
This is really good bruh you made it more clear than the man page thank you so much :)
@amanvarshney51217 Жыл бұрын
Tysm I always recommend your channel to my friends for C programming and OS related concepts.
@eashansarkar_38193 жыл бұрын
your videos are really fantastic!!! keep it up
@cleightthejw22022 жыл бұрын
Thanks for the videos. You do a great job explaining and teaching
@avixx7 ай бұрын
Thanks for all C vids, you helped me a lot!
@AbdelrahmanAzmiАй бұрын
your video is awesome bro, thank you so much!
@MenakuanzambiFernando7 ай бұрын
Really great video, very thanks for the content
@facundolubo10 ай бұрын
I don't know if is a good practice to use the pre-processor for something like the calculation of a given function, but it has sense to replace the constanst in order not to use space of memory to storage constansts.
@jaafarbouhnine9 ай бұрын
top-tier vids! Thank you so much, man!
@DevDoge_ Жыл бұрын
Thank you so much, very well done introduction to macros!
@samaellovecraft8 ай бұрын
Thanks for the knowledge!
@minercreepmc3 жыл бұрын
Still best channel teach C with friendly way
@einfacheente Жыл бұрын
Great video easy to understand 👍
@CosmJJ4 жыл бұрын
Great channel! Thank you very much!
@fernandodejesuslucart93392 жыл бұрын
incredible explanation
@hashimsulaiman6003 Жыл бұрын
thanks very good explanation
@abdelazizelhayyany60873 жыл бұрын
what a gift
@htainlindwa7603 Жыл бұрын
Nice explainationThamx
@АрманСоколовский4 жыл бұрын
This video have to be popular
@gabrielzaharia993 жыл бұрын
Thank you so much for the tutorials!
@hebasm91103 жыл бұрын
احبك كثيرا لانك تلهمني لأكون مبرمجة💜💜💜💜
@amnakhalil2 жыл бұрын
Oh my gaawd.. u r great
@habeebbabasulaiman72149 ай бұрын
Please why do you like using main with arguments instead of void?
@CodeVault8 ай бұрын
That's just how the standard defines it
@tomsterbg8130 Жыл бұрын
No wonder that our C++ teacher told us "when in doubt, add more parentheses"
@furkankamaci6180 Жыл бұрын
amazing..
@abdoroma6928 Жыл бұрын
Very cool
@kendalwilliams512810 ай бұрын
thanks a ton!
@Peter_1986 Жыл бұрын
I abuse the hell out of the "define" directive - sometimes I replace an entire body of statements with a single word that summarises its purpose. I realise that this is often considered poor programming practice, but it often feels very convenient - especially things like replacing the awkward line "( ('a'
@CodeVault Жыл бұрын
I would use a function for that maybe. But, definitely if you want the most performance (and some good readability), this is the way to go
@AliG.G5 жыл бұрын
I reckon I have struck gold
@someone-ci6cl2 жыл бұрын
ummmmmm sorry but r u a german ?
@CodeVault2 жыл бұрын
No. I'm Romanian
@LL-ue3ek Жыл бұрын
Thank you for the demo! I never used it this way: #define PRODUCT(X,Y) X*Y interesting!