Your teaching style is not only engaging, but also incredibly effective. The way you present complex concepts with clarity and enthusiasm has truly enhanced my understanding of the C programming language. And I would like to say, thank you.
00:00 Loops are important for automating repetitive tasks 00:48 Automate sending notices to employees using loops 01:35 Loops are required for repeating tasks 02:26 A while loop is used to print values in descending order 03:22 The for loop decrements a value and checks a condition until it is false. 04:15 While and for loops have similar functionality 05:05 Explanation of while loop initialization and condition checking 05:54 For loop and while loop are the same, but differ in number of lines of code.
Thank you so much! I beat myself for not understanding the For loop (and loops in general) in college and got discouraged because I didn't get the concept. I worried about the increment/decrement part in the For loop because I was told that machines read codes line by line so when I encountered For loop I was totally flabbergasted. Like wait, there's an increment at the end of the parenthesis, why did the printed value not reflect the increment AM I GOING CRAZY???? Really, thank you so much kind sir! I'm so glad I stumbled upon this video :)
From this c tutorial I known that some people's exits in this selfish world,whose only intension to give the knowledge without any guru dakhishnaa you are too good sir
thanks a ton NA!! this tutor made me fall for c programming and optimistic reg rest of the prog languages. thats power of an incredible educator... lots n lots of love and huge respect!! keep up 💌🙏
What a easy n understandable Explanation....Sir I wish u could be my sir in collage..u are great sir...u are truly great!🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻❤️
@4:46 In the for-loop, you forgot to declare the counter "i" as of type int. One, especially the first time learner, may get confused that you're declaring "i" and initializing it in the while-loop but skipping it in the for-loop. Otherwise, everything looks okay.
@@x4sting529 even while you are using for loop you have to initialize the variable, such as "int i". you can initialize it in "for" or before it: int i; for(i=3;i>0;i- -) OR for(int i =3;i>0;i- -) both works same
Love the way you explain but just wanted to point out that @ 04:46 in both while loop example and for loop example the statement has to be printf("%d",i); not print(i)
Thank you Neso my teacher isn't good at teaching one of this he the way he teaches is he always make it scripted and doesn't compare both of for and while loop.
Im not understanding why the ACTUAL course Im in... cant express/teach in a more basic/human way... much like this video... Im starting to struggle in the understanding of that now seems to be a simple program... uhh, Im grateful for multi-source learning and sharing of knowlesge.
Sir the program has a mistake in the printing statement you need to put a + sign also to display the value of 'i' else it will display only i . Hope you understand sir and thanks for explaining so nicely and shortly
So glad I found your channel. This kind of explaination is what i want right now because I am still struggling to understand how loops works. Very detailed and specific..THanks a lot for sharing your knowledge! More power! New subscriber here
Some may consider this an advanced use of these loops, but why not mention about continue or break or return for ways of ending the loop early as part of this topic?
Once more i rely on amazing Indian programming tutorials to survive my course. Thank you Neso!
It's NESO.
@@itsgamingtime..7001 fixed it now! Keep in mind I posted this about a year ago.
We all follow. It's one of the best
YAYA BLABLAjust kidding
Ok
@@lorddank1121
Your teaching style is not only engaging, but also incredibly effective. The way you present complex concepts with clarity and enthusiasm has truly enhanced my understanding of the C programming language. And I would like to say, thank you.
I am studying only because of these lectures,before this I wasn't interested in coding at all.But now I m loving it.
Same with me dude.❤
The best tutorial class I have watched ever....very simple to understand and remember.....thankyou neso academy ❤️
00:00 Loops are important for automating repetitive tasks
00:48 Automate sending notices to employees using loops
01:35 Loops are required for repeating tasks
02:26 A while loop is used to print values in descending order
03:22 The for loop decrements a value and checks a condition until it is false.
04:15 While and for loops have similar functionality
05:05 Explanation of while loop initialization and condition checking
05:54 For loop and while loop are the same, but differ in number of lines of code.
thanx neso...your tutorials most valuable for my degree...again thank you very much
You're indeed the best programming teacher ever for this twenty first century . Thanks Sir 🎉❤
I've never seen anyone take their time to explain coding tutorials visually like this. thank you
At this point, it is fair to say Nesoacademy is the best computer programming tutorials i've seen so far.🥺
Such a clear and well constructed tutorial. Thank you so much
Thank you so much! I beat myself for not understanding the For loop (and loops in general) in college and got discouraged because I didn't get the concept. I worried about the increment/decrement part in the For loop because I was told that machines read codes line by line so when I encountered For loop I was totally flabbergasted. Like wait, there's an increment at the end of the parenthesis, why did the printed value not reflect the increment AM I GOING CRAZY???? Really, thank you so much kind sir! I'm so glad I stumbled upon this video :)
same situation with me
I really like how you compared how 2 different loop types accounts for 1 output.
the most understandable lecture so far.
You are one of the best c language tutorials...also your way of speaking iss too good
Thks sir
From this c tutorial I known that some people's exits in this selfish world,whose only intension to give the knowledge without any guru dakhishnaa you are too good sir
this video is amazing !!!!! . he teaches you the topic in such simple words and with great examples.
Awesome👌, lacking words to describe my feelings of having this program right now. 😍
thanks a ton NA!! this tutor made me fall for c programming and optimistic reg rest of the prog languages. thats power of an incredible educator... lots n lots of love and huge respect!! keep up 💌🙏
What a easy n understandable Explanation....Sir I wish u could be my sir in collage..u are great sir...u are truly great!🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻❤️
wow, this is the most concise tutorial I have found on youtube! Thank you!
Our mechatronics class just watched this explanation, and it really helped clarify while and for loops; thanks !
This is the best tutorial for c language . I simply understand ❤️
Respect n love from #Kashmir
Im really impressed with these videos
This was extremely helpful
Guys they are providing everything for free and some idots dislikes these types of videos. I think they need mental treatment
@Chung Rons yeah I don’t give a damn
@Chung Rons how did you do it ?😳
U r the best teacher for teaching c language..
You are an amazing instructor!!
Absolutely great explanation 👌 👏 even our lecturer can't explain in such a simple way😃
This is my first day, and i am willing to learn more from this program.
@4:46 In the for-loop, you forgot to declare the counter "i" as of type int. One, especially the first time learner, may get confused that you're declaring "i" and initializing it in the while-loop but skipping it in the for-loop. Otherwise, everything looks okay.
Was going to comment this, glad I found your comment
@@play_sports_and_read_books explain?
@@x4sting529 even while you are using for loop you have to initialize the variable, such as "int i". you can initialize it in "for" or before it:
int i;
for(i=3;i>0;i- -)
OR
for(int i =3;i>0;i- -)
both works same
Finally... I got for what I was searching, explanation was like booooooooom🔥🔥 today I got the best teacher of cs in u 😊😊, keep it up sir.
yes , you have completed the whole playlist?
Perfect explanation for beginner! My brain is clear now! Thank you!
Love the way you explain but just wanted to point out that @ 04:46 in both while loop example and for loop example the statement has to be
printf("%d",i); not print(i)
neso is love. Thankyou team neso..
hey it's real good understanding and you given live example great job!!
I usually don't write comment but this is what I want 👍👍👍
Thousands of C programming videos but his videos are LIT🔥
you are my such an amazing teacher love you...
I think this one is the last video for those who not ever understand loop concept even for me thanks brother
Amazing superb. Way of explaining so detailed with examples. I am lecturer and its really appreciative lecture.👍
i am learning c,c++ from your channel thanks you so much sir 🥰🥰🤗🤗
Very simplified
Understood in just one video
Thanks man!!
neso is so much better then other youtubers ...........
wow it was so clear and the visuals really helped in understanding the concept hope to see more of these videos tysm♥
Thank you Neso my teacher isn't good at teaching one of this he the way he teaches is he always make it scripted and doesn't compare both of for and while loop.
very simple to understand and great explanation
Im not understanding why the ACTUAL course Im in... cant express/teach in a more basic/human way... much like this video... Im starting to struggle in the understanding of that now seems to be a simple program... uhh, Im grateful for multi-source learning and sharing of knowlesge.
Bruh seriously you're stunning ♥️♥️♥️.
One of the......best I've ever seen 🙏💓💓🔥💥
Clear, precise and to the point!!!💯👍🏻Great Work Sir!!!1
You are the best in the explaining 🔥
This video made these loops very easy to understand - thank you!
well explained, tysm this really made my day happy.
Best video I ever watched for loop
Sir the program has a mistake in the printing statement you need to put a + sign also to display the value of 'i' else it will display only i . Hope you understand sir and thanks for explaining so nicely and shortly
Thank you sir.. Ever found something so good.
Thankyou neso now i got more clarity on loops
Amazing video...straight to the point
Thank you for clearing my doubt. sir❤
Thanks you so sir really I understand difference between while loop & for loop
Sir upload all videos as soon as possible so that it will be more beneficial for students like me.
This is an excellent channel
Thank you for the excellent explanation !
Awesome explanation. Thanks Neso Academy
Very well explained ...Thank u so much sir..☺️
thank you , i was damn confused regarding the steps ... this is so helpful!
Thank you for this video. New subscriber here from Philippines😊
Such an instreesting explanation
such a fascinating explanation
legendry teaching skill
Excellent explanation and presentation!👏❤️
thanks Neso academy .. very informative, ever I had 👌
Soo nice explanation and your video is also relaxing your explanation is great
wow amazing man now i thik loop is just like learning abcd thank you u make my day
Thank you very much. This was really helpful and informative
you are doing a great job, sir.
Brother your explanation is great
So glad I found your channel. This kind of explaination is what i want right now because I am still struggling to understand how loops works. Very detailed and specific..THanks a lot for sharing your knowledge! More power! New subscriber here
Very clearly and completely explained thank you so much
Well explanation sir.tqu for your explanation.
You are great in explaining!!!!
you so good man keep in going
Some may consider this an advanced use of these loops, but why not mention about continue or break or return for ways of ending the loop early as part of this topic?
Like you videos!!! Hello from Kazakhstan
holy!! thanks for the explanation, now i understand it😭
Excellent explanation
I haven't get any Python video from your channel..... please uploade video on Python for the beginners
very informative Id just understand this lesson than my teacher
I love indian accent in English..i think because of sheikh zakir
Thank you from Egypt 🇪🇬
Who is Sheikh Zakir ??
@@KimTaehyung-ex3ts sheikh zakir naik ..search for his responses on RUclips
Thanks sir for that wonderful tutorial
Oh man I am addicted to coding.
yes me too, this credit goes to NESO ACADEMY😁😁
Then when to use for loop and while loop then
Real world problem compare is very helpful 👍👍👍👍
very interesting thank you so much Neso
This was very helpful. Thank you.
Thanks alot sir it is really helpful,👏👏
loved the explanation....thankyou neso....
man you have been doing a great job since the past few years. but would be better if you provide some exercises as well
Sir superb explanation
Thank you soo much ur a wonder full guy..
Its always Neso.Subbed