Functions In C: C Tutorial In Hindi #19

preview_player
Показать описание
In this C programming tutorial video, I have explained you about functions. I hope you are enjoying this C course in Hindi.

Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

Those who did not understand pls see this ....I have tried to do it in a fresher way. The main problem is sir used several programs in same file.Here is the refreshed version.Hope you all guys find it helpful.👇👇👇👇
1)// Without Argument and without return type
#include <stdio.h>
void myname()
{
printf (" Soham Mukherjee");
}
int main()
{
printf ("My name is :");
myname();
return 0;
}

2)//With Argument with return value
#include<stdio.h>
int sum ( int a, int b)
{
return a+b;

}
int main ()
{
int a, b, c;
a=9;
b=87;
c= sum(a, b);
printf ("The sum is %d\n", c);
return 0;
}


3)//Without Argument and with return value
#include <stdio.h>
int takenumber ()
{
int i;
printf ("Enter a number ");
scanf("%d", &i);
printf (" The number is %d\n", i);
return i;
}
int main ()
{
int c;
c=takenumber();
return 0;

}

4)//With Argument and Without return value
#include<stdio.h>
void printstar (int n)
{
for (int i = 0; i < n; i++)
{
printf("%c", '*');
}

}
int main()
{
printstar(7);
return 0;
}

sohammukherjee
Автор

this is the only video which i was unable to understand till now from this playlist

lakshaykumar
Автор

You really deserve a huge respect for doing this job. You don't know how you are helping non CSE engineering students by providing this.
Salute sir.

bibhoregoswami
Автор

Ye video dekhne ke bad Aesi feeling aarhi jese Sari old Learning video ka mix masala ho gya😂. fully confused
Or jab video dekh rha tha tab laga sirf muje samaj nhi aayi but jab aake cmmt dekhi toh😁🤣 Mere bhai bandu bhut sare mile 😁

cartoon_club
Автор

Harry bhai school se lekr college tk aagye or fir govt job b lg gye lakin programing language and concpt iske aapki video dekhkr smjh me aaye hai wrna to teacher ka muh dekhkr ratta marke pass huye the smjh m kuch nhi aaya tha kabhi.

RajeshYadav-lhzc
Автор

This lecture 19 needs to be watched several times if not understood becoz this video will crystal clear your functions topic literally i understood it perfectly

vishalkarmakar
Автор

Whenever i watch your lectures my respect for you increases a lot ...Thanks on the behalf of all students who are achieving new milestones by watching your videos . Thanks for being our teacher .

shubhamkiller
Автор

Sir I understood your all videos but this video created a confusion...🤔

mohdzeeshan
Автор

Thank you Harry Bhai for this valuable cource.

#include<stdio.h>
void message(void);
int main()
{
printf("My Introduction\n");
message();
printf("My name is Can");
}

void message(void)
{
printf("I am a student\n");
}

can_yaman
Автор

Sir thoda kam samjh aaya . Function is tough :(

keshavgaur
Автор

Thank you so much I am watching your videos in 2023 It is very helpful. I am enjoying learning c language from you 🥰
Huge respect and love You Sir😍

Amar-qkhg
Автор

don"t mess up things in our mind by using multiple functions in same file
make it easy bro

MukeshKumar-qyjz
Автор

yr aap kitne laajawab ho...mtlb feel kr kr ke btate ho...experience level or Teaching level best h Sir aapka💓💓😊😊🙏🙏

digambersinha
Автор

void myname(){
printf("my name is Sharma");
}
int main(){
printf("what is your name?");
myname();
return 0;
}

Here, myname() is a function without argument and without return value!

SadhguruKnows
Автор

Hello sir.
my name is Yash kumar.
i belongs to meerut...sir apke video dekh kr mere programming bahoot improve ho gyi ha.. teacher ko bhi believe nahi hota mere programming dekh kr..sir me apko apna idle manta hu....apke hi sarre video dekta hu.. muje bahoot proud feel hota apne app per jab muje koi program deta ha ..aur me turant bna deta hu usko chaiye kaisa bhi ho..
muje itna acha lgta ha socha app ke sath share karo...
harry sir love you..

yashkumar-jfrf
Автор

A function can be called multiple time to provide reusability and modularity

srcreation
Автор

1)avoid rewriting program
2)we can devide work among programmers using function

srcreation
Автор

Time stamp = 24:11
Without arguments and return value:-
int printing{
printf("Hello Guys");
}

utkarshvibhav
Автор

Harry bhai you are great.. Mjy aj apki ye video dekhny ky bd functions smj ae wo bht achi tra.. Is sy phly bilkul b functions ka concept clear ni tha.. And done with quiz also💖

nimikhan
Автор

I was so nervous before learning functions in C but after watching this video it has become an easy task to make functions...

jayeshparihar