do-while Loop

preview_player
Показать описание
C Programming & Data Structures: do-while loop in C programming.
Topics discussed:
1) Difference between while and do-while loop,
2) When should I prefer do-while over while?

Music:
Axol x Alex Skrindo - You [NCS Release]

#CProgrammingByNeso #CProgramming #dowhileLoop
Рекомендации по теме
Комментарии
Автор

2:55, i like how you noted that you need to put the semicolon after the "do...while" function while you did not use your own advice

sidla
Автор

Whenever he says "right?", I fear that in the very next moment he'll say, " wrong! !"😄😄

siulichatterjee
Автор

Really ur explanation is great sir
Even the one who do not know the c -lang by listening to this I’m sure that they’ll understand C lang clearly .
Tq

aishwarya
Автор

Information was clear and concise.
Thanks heaps for your efforts :)

ratchetbear
Автор

Thanks! It was a fast and simple explanation to understand. Nice video ^_^

srta.carlota
Автор

Every time I watch your teaching videos I'm getting better, Thank you so much

ksofficerofficer
Автор

Thanks for the explanation, now I understand

kapkoder
Автор

Thank you sir. All my doubts are cleared

saritasingh
Автор

Sir 🗣️a small note: there is a missing 👉';' at the last do-while example you entere.✍️

nehagupta
Автор

For (int I=o;i<5, i++)
{

Statement



}. Note;it is example of for loop

naveedsab
Автор

thank you so much. Now I understand difference between while and do while loop

baohuariley
Автор

Your explanations are the best out there. If you have a paid course, I will sign up for it.

MarcGyverIt
Автор

thank you for ur amazing explanation.
a small note: there is a missing ';' at the last do-while example you entere.

ahmed
Автор

Thank you for the video, I just want to sat that - this code also works, uses while instead of do-while, and gives same output as your do-while loop with the same with even fewer lines.
int n;
while(n != 0){
printf("Enter an integer\n")
scanf("%d", &n);
}

miroslavblagoev
Автор

Thank you so much this was really helpful

amberarts
Автор

Excellent explanation sir VERY HELPFUL VIDEO

iqmal
Автор

Thank you sir for this video it's really good!!!

A_A-qegx
Автор

My 2 hours work you solved in 2-3 minutes sir I am sure that your channel will be sure in top 10 ❤

amandeepsinghdhillon
Автор

sir your explaination is very nice, thank you sir :)

_tejasdesai
Автор

What a fantastic tutorial, I struggled with this for a long time before seeing your video. Thank you

UruzStrong