Function Basics | C Programming Tutorial

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Great video, I love the fact you take the time to explain the core functionality behind things, metioning relationships and comparisons between other things we've already learned, instead of just glossing over code.

dorsia
Автор

A dude that knows how to explain at the perfect pace and thoroughly, thanks!

jacobpark
Автор

Thank you for helping visual learners! Your content is valued and appreciated

kylemlsantos
Автор

You cleared up alot of unknowns for me here. Thank you

Steeler
Автор

Thank you very much. It's one thing to read and understand a book, but it's also very easy to lose your way when implementing those concepts from a book. This put me back on track, and now I understand why I am making mistakes with my functions.

TrumpISAgentORANGE
Автор

The compiler joke got me. Thank you for the explanation.

efekucukyeter
Автор

the super inefficient multiplication is funny but definitely learned😂

omniyambot
Автор

Can we actually call out mult() function inefficient, if eventually the compiler produces assembly code that multiplies by addition for all high-level multiplications?

zodack
Автор

Your so great at explaining thank u so much, new subscriber

animeworldamv
Автор

Hi, thanks for the video, may I know why is there a "0" in "return 0" and "int result = 0"? What does the 0 mean? Is there any other video I can see to find out why?

jeremytay
Автор

Hi could you make a tutorial video how you installed gcc on mac and how you use it on terminal i am really having problem with it please.

hadichaahmadjonova
Автор

Nice video! also very helpful that you share the code you used in the video :)

dasura
Автор

Hello, you mentioned the variable result cannot the be used outside of the add function. It appears again in mult however. Is the program/compiler going to know both result variables are different even though they appear in two functions? Thank you

yehah
Автор

What if the parameter has 2 different data type? can float and integer be in a same parameter? example- convert(int a, float b);

intanshari
Автор

Why do we need function declaration if we can just express the whole function before the main function? I don´t understand

mareknovak
Автор

I was a bit lost in the function calling other functions example...
I couldn't get how you did the multiplication... 😔

Codewitheyezyc
Автор

I don't understand why u used a for loop with 'i' when u did not declare 'i' as a variable.. or is it another way of declaring a variable

thegospelmessages
Автор

even if u dont write return result; the output is showing me as 9..didnt get wht return is used fr ?

aabirraghib
Автор

that fun fact i discoverd is when i use for() with its brackets " {} " u must replace that return out of the loop ---> for(){} return result;

rekt
Автор

7:00 important point that your college professors won't explain every .

my_evil_side