Sorry to be off topic but does any of you know a way to log back into an Instagram account? I stupidly forgot the password. I appreciate any help you can give me!
@@Mina-gk8jm l and b are the only variables. breath and length are just like some placeholders we declare in the function to do its thing. when we pass values of l and b to the function when it's been called value of l get assigned to the length and value of b get assigned to the breadth. so length and breadth becomes like copies of l and b respectively which holds their values.
@@Mina-gk8jm l and b the real values are called arguemnts and length and breadtha are called parameters. so what happens in here is we map the values of arguments to the parameters
The topics which seems to be very complex to me when it was taught in my college, After watching these leactures seems much more easier. Really now I`m enjoying learning C language. 🔥🔥🔥🔥🔥 THANKS for putting these much efforts for making such wonderful leactures. In my opinion No channel out there on you tube is of your level. 💖💖💖💖💖
I am studying a course on programming in C in Sweden at the moment (my home country), and my lab assignments are apparently all about programming some of the practice problems in the book, as well as answering Quiz questions, and I have been a bit stuck on Functions at the moment (this is the minimum requirements for a passing grade), so these videos are a great help.
you're the best progamming teacher I've met! wow!! the example that of abstraction (like we use scanf all the time) is such a good one. I never thought of it like that. The way I was previously taught made me to memorize that we just need functions in code, but I understand better now how important they are in making our code simpler.
Sir I have a doubt. In the program, at function definition u have not declared the third argument (area). Later u defined it in body of function prototype. Also the variables in the function call and function definition are different. Even though the program is working. May I know how
Firstly, it difficult to understand what you are saying but your last example clear why and where we will use function. Thuogh it need to be practised more to crystal clear about function in C. Now, My question, if someone can understand C fully, can one get benefits to learn other language from C such as python? Does one language helps to learn other? Thanks for sharing.
as u said in this video in the first program where u spoken about finding area of rec in printf u have written the data which should be written in the scanf
dear neso academy no doubt ur making good videos but to be honest u are taking lot of time in uploading videos, last time i started course on neso academy but due to late uploading i was not able to complete that course becoz of semester exam, i request you that plz try to make videos fast and i know it is difficult to solve each and everyones query online but plz help because in our semester they have already completed arrays, structures,functions thanks.
I have seen a strange function definition lately, I don't understand. It goes return_type __init function_name( parameter list ); what's that init thing in between!?! Seen in sources for kernel modules.
merhaba neso academy önceki videolarınızda alt yazı seçeneği bulunurken bu videoda ve sonraki videolarda bulunmuyor lütfen düzenleme yapıp alt yazı seçeneğini eklermisiniz.
doubt sir. the return type of the main function is given as int , but there is no return value to its call, how does the program run successfully..? plz answer me
Return value no need for that software it is an dev c++ software and it is advanced then turbo c++ .when we use turbo c++ then defnelty we use return value
There are a lots of tutorials on c out there on the internet, but I found yours the most helpful and fully described...
Yes, it's not only programming, other engineering tutorials are great too. Generally a great channel if you an engineering student!
Sorry to be off topic but does any of you know a way to log back into an Instagram account?
I stupidly forgot the password. I appreciate any help you can give me!
@@hiraasghar3954 jih@ddi
you are just nailing c. i can't understand a single thing my university lecturer is saying, but your videos are so much easy to understand. keep it up
Why does he write int l, b, when it's initually declared as length and breadth? I don't get it, wouldn't that make it different variables.
@@Mina-gk8jm l and b are the only variables. breath and length are just like some placeholders we declare in the function to do its thing. when we pass values of l and b to the function when it's been called value of l get assigned to the length and value of b get assigned to the breadth. so length and breadth becomes like copies of l and b respectively which holds their values.
@@Mina-gk8jm l and b the real values are called arguemnts and length and breadtha are called parameters. so what happens in here is we map the values of arguments to the parameters
@@dinithkumudika6459 ohhh I see. Thank you so much!
The topics which seems to be very complex to me when it was taught in my college, After watching these leactures seems much more easier. Really now I`m enjoying learning C language. 🔥🔥🔥🔥🔥 THANKS for putting these much efforts for making such wonderful leactures. In my opinion No channel out there on you tube is of your level. 💖💖💖💖💖
😂😂😂 you make everything seem very easy l was having a hard time understanding this at my university
Are you success on your career
Same feeling😊😅
Then why are you laughing ?
Same 😂
I am studying a course on programming in C in Sweden at the moment (my home country), and my lab assignments are apparently all about programming some of the practice problems in the book, as well as answering Quiz questions, and I have been a bit stuck on Functions at the moment (this is the minimum requirements for a passing grade), so these videos are a great help.
In which university and which course are you pursuing?
well-described...I have watched several videos on web. yours is one of the bests. I became one of your channels fans...TNX
Don't know why it is getting less like but ur vedios are awesome, no words to Express 👌👌👌
I think this playlist is the best ever from my previousely watched videos.
This is the best explanation on function by anyone on the youtube
G.C.O.A.T 🙌🏻
Greatest channel of all time 🐐
Just started learning c your tutorials are amazing and well explained
Finally found the video i was actually looking for
my professor teach this programming course very badly, after watching this video I understood about functions very well, Thanks a lot
Bro deserves a Like & comment
you're the best progamming teacher I've met! wow!!
the example that of abstraction (like we use scanf all the time) is such a good one. I never thought of it like that. The way I was previously taught made me to memorize that we just need functions in code, but I understand better now how important they are in making our code simpler.
Thanks for the good explanation
A good video, and very understandable. Thank you.
I'm really impressed with the way u teach
Thanks for providing such videos 👌
Thank you so much ...this video's are very useful and understanding 😊
Super explanation sir we are soo lucky to listen your vedios
Hello Sir, thank you for sharing your knowledge for free, It is very help in my studies
direct and valuable points💓
Thank you so much . Understood it really well.
Sir your vdos are clatter free and always helpful for beginners.
Crystal clear each and every doubt!
thank you
Firstly I had dought but now 😘😘😘😘all thanks to you ❤️
Thank you brother. your way of presenting the topic is fabulous. Thanks once again :-)
sir please upload
complete course videos.u r d best sir
Sir u have many fans ❤️❤️
thank you bro
this made things very easy!
Very useful and understandable video hats off to you 🤠
thank you my teacher. i am studying your lesson from mozambique(africa)
You really explain it well
Amazingly explained!
Thank u sir.. make more videos on function
Thanks 👍🏽
You are amazing!
Outstanding sir
Sir I have a doubt. In the program, at function definition u have not declared the third argument (area). Later u defined it in body of function prototype. Also the variables in the function call and function definition are different. Even though the program is working. May I know how
the variables of a function are local variables , so there is no problem in using same name or different name for the variables.
Great🔥
Thank you so much sir for clearing each and every doubt 😊
It is our hope that the concept has been understood by you
Rewatching❤️🇧🇩
Thank you so much sir..great job
amayzing sir
Thanks a lot!
your way of teaching charmed me very much
Your name is Jasprith right ?
Thank you so much for these videos and thank you even more for using a black background most of the time.
Sir your explanation is fabulous can we expect tutorials for python also...
Yes, I wish he could upload python tutorials
Thank you Sir
Thanks for helpful vide
So Amazing!
love from bangladesh..
sir aapni too op dekhe emotional hoy gelam
WAAAH THANK YOU!!!!!
Great explanation
Firstly, it difficult to understand what you are saying but your last example clear why and where we will use function. Thuogh it need to be practised more to crystal clear about function in C. Now, My question, if someone can understand C fully, can one get benefits to learn other language from C such as python? Does one language helps to learn other? Thanks for sharing.
Thnku so much sir ....
Plz upload C++ programing Course 💯
as u said in this video in the first program where u spoken about finding area of rec in printf u have written the data which should be written in the scanf
Suggest me any software to do programming in c in laptop
Use turbo c
It really amazing I very much attracted it
dear neso academy no doubt ur making good videos but to be honest u are taking lot of time in uploading videos, last time i started course on neso academy but due to late uploading i was not able to complete that course becoz of semester exam, i request you that plz try to make videos fast and i know it is difficult to solve each and everyones query online but plz help because in our semester they have already completed arrays, structures,functions thanks.
Totally agree
Sir please reply you have paid or free course or lecture on esp32 freertos.
Sir please upload videos of recursion.
breadth can mean also width right
2024..❤ still useful..❤
sir we can write datatype instead of return type
Plz make more videos on c programming
Best of best
sir please upload tutorials for c++ please.
what is the use of giving input? what it does?
Nice
🙏 ustad g
Always neso
I have seen a strange function definition lately, I don't understand. It goes return_type __init function_name( parameter list ); what's that init thing in between!?! Seen in sources for kernel modules.
Please do a video on linked list
❤️❤️❤️❤️
Shukriya sur
I'm into coding for over a year now and I already to dislike oop more and more. It gives me the illusion of making progress when creating classes.
i found ur videos a suggestion
very usefull but after every topic u should give 10 or 20 question to practice.
Quizzes are available on our app.
please add subtitles for the video, i really want to learn it
Plz make more videos
sir pl z make videos on sting
sir data structure video bhi upload kijiye
Why the code not have return 0; in the last line???
can someone explain what is the purposde of "return area" in this function, and if wont put it there what will happen
How to get notes ??
when i tried to repeat the program it didn't work neither on gdb compiler nor on vs codes ... when i tried to recalculate the value of area
3:05
for everyones notice:
FUNCTIONS CANNOT RETURN ARRAYS!!!!!!!!!!!
you have to use pointers or something else if you want to get arrays
how did the program knew that l is for lenght and b is for breadth
Thank u indian man
merhaba neso academy önceki videolarınızda alt yazı seçeneği bulunurken bu videoda ve sonraki videolarda bulunmuyor lütfen düzenleme yapıp alt yazı seçeneğini eklermisiniz.
In the program 11 th line semicolon was missing
Good Video. Pls increase the Pace of uploading videos
doubt sir.
the return type of the main function is given as int , but there is no return value to its call, how does the program run successfully..? plz answer me
Return value no need for that software it is an dev c++ software and it is advanced then turbo c++ .when we use turbo c++ then defnelty we use return value