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 void myname() { printf (" Soham Mukherjee"); } int main() { printf ("My name is :"); myname(); return 0; } 2)//With Argument with return value #include 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 ",c); return 0; } 3)//Without Argument and with return value #include int takenumber () { int i; printf ("Enter a number "); scanf("%d",&i); printf (" The number is %d ",i); return i; } int main () { int c; c=takenumber(); return 0;
} 4)//With Argument and Without return value #include void printstar (int n) { for (int i = 0; i < n; i++) { printf("%c",'*'); }
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..
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.
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
@@AdityaThakur05 if before declaration void average() { float a,b,c; printf("Enter the value of 3 numbers a, b, c in a sequence : "); scanf("%f%f%f",&a,&b,&c); printf("The average of 3 numbers is = %.3f",((a+b+c)/3)); } if after then simply declare it then function calling only
sir aap kaafi acha padhaate hain, mere khyal se aapko har video ke aakhri me ek mcq type quiz bhi rakhni chahiye thi video ke contents se related aur aapko har video ke baad hw bhi dena chahiye jese practice programs jinme humlog padhaye gaye topics ko implement bhi kar saken par chaliye koi nahi, acha hain ki aapne yeh course mera college shuru hone se pehle hi banake khatam kardiya tha too me 1st semester me yeh pura course khatam karlungi fir aapka java vala course start karungi
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!
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 .
Thank you Harry Bhai for this valuable cource. #include void message(void); int main() { printf("My Introduction "); message(); printf("My name is Can"); }
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💖
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 😁
#include void funcforharry() { printf("This is a function for 'codewithharry' Based on Without arguments and Without return value:- So #codewithharry you can see now their is no argument and no return value"); } int main() { funcforharry(); return 0; }
@@samali765-b1y I have written display(); at the last line that means i am calling the display function which is defined as void display(){ ...}.This function has a print statement which actually prints .
@@binodbastola8255 But harry sir has used printf as calling function in every way of defining function. I also searched and implement it on vs code by using prinf as calling function, it is giving me correct answer. But I think your logic is not true.
# include < stdio.h> Void func ( ) { int i; printf ("enter a number"); scanf("%d",&i); } int main ( ) { func( ) print (" The entered value is %d",i); return 0; } Is this correct bhaiya???
24:03 *Without argument, without return value* #include #include void name(); int main(){ int e; char c; printf("Enter your name:"); scanf("%c",&c); e =(int)c; printf("The ASCII value of your name's First Letter %c is: %d",c,e); } void name(){ printf("Done!"); }
Without argument without return #include #Include int sum(); Void main { int c; c=sum(); printf("sum=%d",c); getch(); } int sum() { int a, b; printf("enter two numbers "); scanf("%d%d",&a, &b); return(a+b); } Challenge accepted.
All those who are commenting nhi samjh aaya ..dont depend on RUclips completely, you can buy book 'let us C' for better understanding Harry sir is explaining good...you should come here after some preperation,
void put(){ //without argument , without return value int q, r; printf("enter number of q: "); scanf("%d", &q); r=q+q; printf("after adding q, value is : %d", r); int main() { put(); } // I hope it will useful for everyone
WITHOUT ARGUMENT AND WITHOUT RETURN VALUE :- #include #include void sum(); int main() { sum(); return 0; } void sum() { int a, b, c; printf("enter two numbers "); scanf("%d%d", &a, &b); c = a + b; printf("the sum of two numbers is %d", c); }
Function with arguments and with return value #include //this is function declaration int multiply(int a,int b); int main() { int a,b,c; printf("Enter the two values you want to multiply : "); printf ("first value: "); scanf("%d",&a); printf ("Second value : "); scanf("%d",&b); c = multiply(a,b); printf("The value of multiplication is %d ",c);
} //this is function defination int multiply(int a ,int b){ return a*b; }
with argument and no return value, you are not defined "i', when you used for loop, while your programm currectly compile, how is possible, please reply as soon as
this topic is halwa after learning java from u ,tho i can relate jb mai phli baar pdha tha mje bhi bhot din lage the samajhne me ,toh guys just try to understand jitna ni smjh aya,1-2 din baad firse video dekhna and also do question practice usse concept aur clear ho jayega.Thanks :D
#include void function() { int j; printf("Enter a number "); scanf("%d",&j); if(j>=10){ printf("The number entered is not a single digit number "); } else printf("The number entered is a single digit number"); } int main() { function(); return 0; }
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
void myname()
{
printf (" Soham Mukherjee");
}
int main()
{
printf ("My name is :");
myname();
return 0;
}
2)//With Argument with return value
#include
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
",c);
return 0;
}
3)//Without Argument and with return value
#include
int takenumber ()
{
int i;
printf ("Enter a number ");
scanf("%d",&i);
printf (" The number is %d
",i);
return i;
}
int main ()
{
int c;
c=takenumber();
return 0;
}
4)//With Argument and Without return value
#include
void printstar (int n)
{
for (int i = 0; i < n; i++)
{
printf("%c",'*');
}
}
int main()
{
printstar(7);
return 0;
}
Thanks a lot bro
Brother mere ko kuch dought h tum aapna insta I'd dedo
Ya face Book
@@aniketshinde8104 happy coding 🤗
Thanks bro
Thanks
Thanks
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.
A little correction: Also helping the CS Students.
@@yashvardhansingh6548 Yes bro
Also C Programers
of software enginerring
this is the only video which i was unable to understand till now from this playlist
same bro, bilkul samajh ni aya :(
Vahi to bro function se age kuch samajh nhi aya par function apni kaksha par samajh aa gya acha samjha rkha hai c++ mein
i thought i was the only one who didnt understand this video as compared to other videos this was slightly confusing
Hn apni kaksha acha se
Same here
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..
Hello brother
Mai bhi meerut se hu!!
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.
He may have the knowledge but not the ability to deliver his thing to viewers.
You must not say like that to anyone
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
To without aruguments and without return ka code bata 😂
how many times you watched it again?
@@muneebahmad2026 i clear this topic from another channel videos
yeah
@@AdityaThakur05
if before declaration
void average() {
float a,b,c;
printf("Enter the value of 3 numbers a, b, c in a sequence : ");
scanf("%f%f%f",&a,&b,&c);
printf("The average of 3 numbers is = %.3f",((a+b+c)/3));
}
if after then simply declare it then function calling only
Sir thoda kam samjh aaya . Function is tough :(
Mujhe bhi tough lga
@@ankursinger102 same here...is topic ko ar time daina chahiye tha...
Samajh nhi aya
bhot easy topic h mughe 1 st time me aa gya sir ne itni asani se smjhaya h ki koi doubt nhi h
dude this function is tough but if you practice more it will become easy, this is also called modularisation.
sir aap kaafi acha padhaate hain, mere khyal se aapko har video ke aakhri me ek mcq type quiz bhi rakhni chahiye thi video ke contents se related aur aapko har video ke baad hw bhi dena chahiye jese practice programs jinme humlog padhaye gaye topics ko implement bhi kar saken par chaliye koi nahi, acha hain ki aapne yeh course mera college shuru hone se pehle hi banake khatam kardiya tha too me 1st semester me yeh pura course khatam karlungi fir aapka java vala course start karungi
without argument and without return value
#include
void display(){
printf("hello world");
}
int main()
{
display();
return 0;
}
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!
damn son.
Sahi he
bruh you cannot use return keyword as it's without return value and without arguments lmao
@@lfg-shreyas Take "void" instead of "int".
And then you can neglect return at the end.
But usme return 0 likha h....mujhe smjh nhi aaya👾
I completed 19 videos in 2 days.
printf("Thank you harry bhai");
Hello brother I want to tell you something can you Help me
Fantastic Video once again... Thank you harry bhai for clearing my concets on Functions .. Thank you very much
yr aap kitne laajawab ho...mtlb feel kr kr ke btate ho...experience level or Teaching level best h Sir aapka💓💓😊😊🙏🙏
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 .
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😍
Bro... I don't know what my Faculty's taught but this is actually easier to understand 🤔
Thank you Harry Bhai for this valuable cource.
#include
void message(void);
int main()
{
printf("My Introduction
");
message();
printf("My name is Can");
}
void message(void)
{
printf("I am a student
");
}
Are you sure bro?
Bhai course ki spelling sikh lo... 😘
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💖
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 😁
Bhai ye dikat hui
😆😆😆Same here vai
Same here bro
I thought I was unable to b focused, wasted three days and depressed, then i came to comnt section
#include
void funcforharry()
{
printf("This is a function for 'codewithharry'
Based on Without arguments and Without return value:-
So #codewithharry you can see now their is no argument and no return value");
}
int main()
{
funcforharry();
return 0; }
Bro ...
Birooo.....
@@_RajatDhullCSB bro nothing is returned here only line is being printed. Value will only be returned if we use *return* keyword.
Thanks bro its helpful
i did the same lol. came to check other people's answer
I was so nervous before learning functions in C but after watching this video it has become an easy task to make functions...
#include
int main() { void display()
{
printf(" I am the function without argument and without return type ");
}
display(); return 0;}
Why you have written display instead of print?
@@samali765-b1y I have written display(); at the last line that means i am calling the display function which is defined as void display(){ ...}.This function has a print statement which actually prints .
What if i write printf() instead of display(). Will it work same?
@@binodbastola8255 But harry sir has used printf as calling function in every way of defining function. I also searched and implement it on vs code by using prinf as calling function, it is giving me correct answer. But I think your logic is not true.
@@binodbastola8255 Printf is not reserved keyword it is library function.
Time stamp = 24:11
Without arguments and return value:-
int printing{
printf("Hello Guys");
}
You have to use void instead of int
thank you brother/sister@@tamsilakhtar
Nhi iss video ke concepts easy the aur mujhe bhut easily smjh aa gya functions aur sath hi me video ....
1)avoid rewriting program
2)we can devide work among programmers using function
Happy paaji tussi great ho! M beginner to web developer bn chuka hu apki videos dekh ke, thanks harry paaji
Bhai kuch tips dede....kese kya padhe
@@Daily_life895 bablu g anytime, tips jb chahiye ho tb mil jae ge, ap email pr topic send krna dena
salute you harry sir,you really deserve respect.
Awesome sir
Like jarur karna
Please make a detailed video on functions.
This is the only video which i was unable to understand till now from this playlist.😢
harry bhai.....function ke upar ek aur vedio post kijie......please........sirf example leke samjhana
#include
void stars()
{
printf("hellow world");
}
int main()
{
stars();
return 0;
}
A function can be called multiple time to provide reusability and modularity
Without argument without return value:
#include
int apple(){
printf("Apple");
}
int main(){
apple();
}
Harry is carry in programming world
🔥🔥🔥
Without argument and Without return =
#include
Void printHello();
int main()
{
PrintHello();
}
Void printHello()
{
Printf("Hello");
}
sir u r great
{.intially i was facing much prblm in C ,but i started your video ,i felt very comfortable in C},thank you so much for videos;
Ur rock ur great desi style ka example zabardast laga bhai....
Thank you brother I was struggling with functions for a while now and your video made my concept on functions crystal clear. I am really grateful!!
Same here
Simple program with
Without argument and without return value :-
#include
void letter()
{
printf("Hello world");
}
int main()
{
letter();
return 0;
}
Sir I understood your all videos but this video created a confusion...🤔
yes sir this video created a confusion...
@রহস্যময়ী কাহিনী tomak confusion hoyene
Awesome explanation of functions👏👏👏👌👌👌
Hii
Jai shree ram ji 🙏😇🙏🙏
God bless you 😇
10:12 (Declaration, defination, call) Important
Thanks for teaching sir
# include < stdio.h>
Void func ( )
{
int i;
printf ("enter a number");
scanf("%d",&i);
}
int main ( )
{
func( )
print (" The entered value is %d",i);
return 0;
}
Is this correct bhaiya???
Printf not printf in main function other than overything ok
Hii Diksha
Printf not printf in main function other than overything ok
Hii Diksha
no it is wrong
you have to use star funcation for no return value and for no arguement you have to use scanf
thats it
Hii diksha , Harsh here!!
Every thing ok but aapne function ko call kiya par use koi variable assign nahi kiya!!
I think there should be a semi colon(;) after func() in main function as it is a function call.
kiya harry bhai app too eakdom gajab he kar daytay hooo .... itna achha say kon samjha ta hay ??????
Excellent lecture
Good ❤️
24:03 *Without argument, without return value*
#include
#include
void name();
int main(){
int e;
char c;
printf("Enter your name:");
scanf("%c",&c);
e =(int)c;
printf("The ASCII value of your name's First Letter %c is: %d",c,e);
}
void name(){
printf("Done!");
}
don"t mess up things in our mind by using multiple functions in same file
make it easy bro
Yes....going too fast 😵😵
@Shiv Pawar lol tmhe samajh nhi aya to gaali do ge c in one video dekho harry ki sab samajh ayega
@@moh.munavvar1768 sch me ??? itta acha h ??/
Sir I have completed quiz.thanks a lot..
U ARE GREAT WITH CONTENT BROO!!!!
as expected you are great teacher ❤ love you sir 😘
Sir!make a bigger video on fuction with more explanation. Previous videos was under stable bt, this 1 arises many confusions🙄
true
Thanks sir for beautiful explaining🎉❤
we can create function even without declaring it by defining it before main function.
I understood this after this video🤣
Char video ke baad bas apka samaj .me aya thanks
Void main is the which has no arguments and no returne value
U are the best coder
This playlist can never b a beginner friendly.
It is
it is
thnks
Sir yeh topic thda sa tough lga plzz is prr aur detailed video bnaiye easy way m🙏🙏
Thanks sir for these wonderful lectures ❤️
Void function we can use which has no return value and no arguments
Sir...ur over powered in ur teaching techniques.....all clear😁😁😁♥️♥️
Bestcoder in you tube
Harry sir aapne bhut achha smjhaya👍🏻👍🏻
Without argument without return
#include
#Include
int sum();
Void main
{
int c;
c=sum();
printf("sum=%d",c);
getch();
}
int sum()
{
int a, b;
printf("enter two numbers ");
scanf("%d%d",&a, &b);
return(a+b);
}
Challenge accepted.
you are returning (a+b) so its without argument but with a return.
Instead of return, printf("the sum is = %d", a+b)
Witout argument and with return type hai yeh
It has a return value.... So this condition falls in without argument and with return valur
It is return and no argument function
Thank for such a nice explanation. 👍❤
#include //Header File
void Ankesh()
{
printf("Hello World
");
}
int main()
{
Ankesh();
return 0;
}
output:
Hello World
right
bro without return means?
@@harshitpant07 it means that it is not going to take anything and will not return anything
@@harshitpant07 if you don't want to write return 0; you can write void main() instead of int main()
#include
void sum(void);
int main()
{
sum();
}
void sum(void)
{
int a,b,c;
a=10,b=10;
c=a+b;
printf("%d",c);
}
without arguments without return
harry bhai, i know i am late but ek suggestion, pls thohda code zyada karwaya karo practically zyada acche se samajh aata hai
without argument and without return value: void main()
Thnx.... Sm.... 🤗
Return type. Functionname(parameter)
{
Return anything
}
Patience = Harry sir
Amazing teaching skills = Harry sir
All those who are commenting nhi samjh aaya ..dont depend on RUclips completely, you can buy book 'let us C' for better understanding
Harry sir is explaining good...you should come here after some preperation,
very very thankyou sir amazing teach 🤩🤩☺☺
Your teaching style is just awesome ❤
thank you for explaining so nicely bhai
void put(){ //without argument , without return value
int q, r;
printf("enter number of q: ");
scanf("%d", &q);
r=q+q;
printf("after adding q, value is : %d", r);
int main()
{
put();
}
// I hope it will useful for everyone
Tnxx brother
ಯ
// Function without arguments and without return value
#include
void GM(){
printf("good morning");
}
int main() {
GM();
return 0;
}
Include
Void guys (){
Printf ("hello guys");
}
Void main (){
Guys();
}
wrong bhai G and g different hote hain
Bss bata raha hu
All cases are done thanks bhaiya
WITHOUT ARGUMENT AND WITHOUT RETURN VALUE :-
#include
#include
void sum();
int main()
{
sum();
return 0;
}
void sum()
{
int a, b, c;
printf("enter two numbers
");
scanf("%d%d", &a, &b);
c = a + b;
printf("the sum of two numbers is
%d", c);
}
Upar function main termination ni lagta;;
#include
void practice ()
{
printf("This code for without argument and without return value ");
}
int main()
{
parctice() ;
return 0;
}
Function with arguments and with return value
#include
//this is function declaration
int multiply(int a,int b);
int main() {
int a,b,c;
printf("Enter the two values you want to multiply :
");
printf ("first value:
");
scanf("%d",&a);
printf ("Second value :
");
scanf("%d",&b);
c = multiply(a,b);
printf("The value of multiplication is %d
",c);
}
//this is function defination
int multiply(int a ,int b){
return a*b;
}
2024 mai kon kon freshers dhek rhe hai es video ko?
#include
void Harry()
{
printf ("harry is best ") ;
}
int main ()
{
Harry();
}
Brother bahut badiya
with argument and no return value, you are not defined "i', when you used for loop, while your programm currectly compile, how is possible, please reply as soon as
In for loop He writes int i; we can also declare the variable in between the loop
Exactly
#include
void display()
{
printf("Have a nice day");
}
int main(){
display();
return 0;
}
Thank you sir for best teaching 😊
this topic is halwa after learning java from u ,tho i can relate jb mai phli baar pdha tha mje bhi bhot din lage the samajhne me ,toh guys just try to understand jitna ni smjh aya,1-2 din baad firse video dekhna and also do question practice usse concept aur clear ho jayega.Thanks :D
#include
void function()
{
int j;
printf("Enter a number
");
scanf("%d",&j);
if(j>=10){
printf("The number entered is not a single digit number
");
}
else printf("The number entered is a single digit number");
}
int main()
{
function();
return 0;
}
9
@@AdnanShaikh-zh5zd bro you write return 0 you cant write that
Please make another video on functions with more examples then it will become easy to understand
mast video he bhai
ye wala video lagta h 10 bar dekhna parega....utna samaj nahi aya
Zakaas..!!! Thank u very much sir
Thoda complicate hogaya.! Please make a new video on functions again with better examples.