#15 C Functions | C Programming for Beginners

preview_player
Показать описание
#15 C Functions | C Programming for Beginners

In this video, we will learn about functions to divide our program into small blocks of codes. We will try out examples using Function Parameters. And we will discuss return types and Function Prototype. We will also learn different types of Standard Library Functions available in C programming.

~
Resources:

Timestamps:
00:00 Start
00:18 C Functions
01:06 Syntax of Function
04:55 Function Parameters
05:23 Create a function with parameter
09:42 Return Type
12:44 Function Prototype
14:18 Standard Library Function
16:12 main Function
16:33 programming task
17:01 Quiz

~

Revise your learning using our C App

Find Programiz elsewhere:

#programiz #cfunctions #cprogramming #learnc #functions #cfunction #returntype #learncprogramming #functionsinc
Рекомендации по теме
Комментарии
Автор

🔥Finding it Damn Hard to Understand C Programming?
Learn to code—the right way—with interactive lessons, quizzes & challenges. Build a strong programming base; it's IMPORTANT!

programizstudios
Автор

now, that's what you call teaching. my prof can't even make me understand this sub T^T. but you did it in just a few minutes. thank you very much.

one.iced
Автор

#include <stdio.h>
int multiplyNumbers(int number1, int number2){
int product = number1*number2;
return product;
}

int main(){

int result= multiplyNumbers(7, 8);
printf("result=%d", result);


return 0;
}

charanjitkaur
Автор

I completed my 12th one month ago and learning C language for the first time and these series were really very very helpful. thanks a lot🤗

yogithabale
Автор

As a person who just started learning Software Engineering I have found these videos most helpful indeed. Definitely subscribing and recommending this channel to any other people I may come across who are in the process of learning software engineering. Great job !!!

njambagachoki
Автор

These tutorials have been the best for simple explanations and work great to code along too and practice, THANK YOU!

for the problem i think its answer is C

#include <stdio.h>
#include <math.h>

int multNumbers(int number1, int number2);

int main() {
int number1;
int number2;


printf("Enter Number 1:\n");
scanf("%d", &number1);
printf("Enter Number 2:\n");
scanf("%d", &number2);

int sum = multNumbers(number1, number2);//dont call this too early remember its proceedural

printf("The result of %d * %d = %d", number1, number2, sum);

return 0;
}
int multNumbers(int number1, int number2){
int product = number1 * number2;
return product;
}

stealthy_doctor
Автор

One of the best lectures for this topic on the internet

kay
Автор

Very good very dope. Spent 3 week eeking by in class not knowing the semantics of calling a function. Solved weeks long headache in less than 20 minutes. Appreciate it a million times over!

louiejacobson
Автор

for the last question A and C is correct but difference the first just call and second calling and store value inside integer which will cast the result from double to integer

mustafaemadeldeen
Автор

this was very easy to understand with walk throughs of clear examples. I know more now than I did 13min ago, thank you for your time.

jtjc
Автор

😍
Watched all the 15 videos. Really appreciatable work... Mam u r teaching very well.. waiting with expectation for upcoming tutorials.. pls make videos for remaining Syntax .. thank u❤️

manjukutty
Автор

Best way to teaching I love all the videos of this channel ❤️

eklavyarajkeshri
Автор

These videos are very helpful! 17 minutes for a tutorial is very professional

srpcdgaming
Автор

This is the best video explaining functions in C that I could find from both searches in English and Spanish, great job guys, thank you!

arturobat
Автор

The answer for that question is "c" i.e int result=test(8.3, 2);

masasivasankari
Автор

Padma mam you are so cool
i am in first year CS student your teaching is superb

hritiksharma
Автор

very elegant person you are, accompanied with good skill of teaching. looking forward to see more of your work. Thank you

naboulsikhalid
Автор

Finally I understood what passing a value in function means my gosh it took me so many videos 😂 on YouTube

BenvelMusic
Автор

I’ve watched hours of videos and tNice tutorials one is the first that explains it in a way a complete beginner could understand! Great

fastservicestv
Автор

finally a detailed video on this topic, thank you ma'am

Ayush_Vshnv