C Programming Tutorial 4 - How a C Program Works - Part 1

preview_player
Показать описание


~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
Рекомендации по теме
Комментарии
Автор

You are currently saving my sanity. The education I am paying for has not been as easy to grasp as your videos. THANK YOU

jaredneaves
Автор

Your explanations are simple but perfectly understandable, I'm just starting to watch your videos and compared to other tutorials out there, where people explain definitions in relatively complex ways, they have been way more helpful.
Right now, I already memorized the printf structure from the previous video. Wrote like 6 or 7 of them just to make sure that I got things correctly. I'll be definitely looking forward to the rest, greetings from Uruguay!

lunosouroboros
Автор

5:27 i am really liking that u are teaching the functions right after "getting started". 'cz it is VERY crucial thing and from the starting. thumbs up. u have my appreciation for doing things the right way, and not the people pleasing easy way.

yash
Автор

while (ongoing_series) {
printf("thank you, Caleb!");
}
return happy;

freeman
Автор

Caleb, your C-series is easily the best programming tutorials I've ever seen. Even my mom could follow this.. And I'm not a young guy, so my mom is REALLY old. I'm fairly new to programming so this has been a fun and very inspiring way to get into C.

nevilovermann
Автор

That integer reference to the return of "int main" just made so much sense, I always wondered what this "int" was at the beginning (thought of "initializing" for the longest time).

WilliamLamyPhotographe
Автор

You are awesome....every other tutorial makes you memorize functions but never explains what they really are !!!

mohamedwael
Автор

This is my very first time learning something out my field or interest! Seems confusing but easy to assimilate

sylvestergodwin
Автор

Your personality just makes this video so much more interesting

zachmccluskey
Автор

I found something awesome here!! I already knew all those stuffs but the way you taught was really impressive...I m subscribing

satyatadhargawe
Автор

I'm programming in Portuguese but learning how to program in English
btw thankss you did a great video.

dhenniferalves
Автор

Hi Caleb,
One tidbit which I’m not sure if it’s shared in other videos... the number returned has a meaning, 0 meaning no error or success. There are cases where the return value could be a value other than 0.

Excellent video, this makes C programming just feel like another language. When looking at some C programs online it can be intimidating even with many years of programming experience.

omnidapps
Автор

I am learning a lot from your tutorials.
Thank you so much .
Please can you make tutorials for algorithm (flow chat and pseudocode) 🙏🙏 will be very glad if you can help.

beachybird
Автор

You're so cool and fun to watch. I've learned a lot. Much love from my side.

CelestineAgropah
Автор

i literally followed your instructions and liked your video, thanks bro

DRUCVSKAMAU
Автор

You're the best one who is teach C Programming Thanks a lot Caleb Curry

ayoubam
Автор

<3 thank you so much for helping!
I have had a hard time on that learning curve, countless hours of reading and researching, but i am coming from C# so im slowly kinda sorta getting there.

crazedprogrammer
Автор

I really appreciate your support and the way you talk 😘

sraginimishra
Автор

One small disagreement, an algorithm doesn't NEED to explain each step by step instruction, it can use high-level function calls that abstract over the implementation details. For example, in C, even with no library imports, a function that computes the factorial of a positive int n might be this:

int fact(int n){
if (n == 0 || n == 1) return 1;
else return n * fact(n-1);
}

but notice here that the mulitplocation operator * is a really just shorthand for a binary function like Mult(int a, int b), and few people expect a C programmer to efficiently define multiplication of integers from basic raw instructions!

gregoryfenn
Автор

you somehow made a c language video explanation fun to watch!

jflor