Control Structures - while loop - do-while loop - for loop - Goto - break - continue statements

preview_player
Показать описание
This EZEd video explains
Control Structures ( Loops )
Iteration & Repetitive statements
Event controlled loops
Counter Controlled loops
Loop Control Statements
- While loop
- Do-while loop
- For loop
Unconditional Branching Statements
- Goto
- Break
- Continue
Рекомендации по теме
Комментарии
Автор

Laughing as when I start on the nods the Einstein comes up and says "Pay attention", like he is watching me. Good information.

Metrious
Автор

which app did you use to do this videos

StudyWithMeAshwiniE
Автор

15:23 isn't this an infinite loop? Wouldn't it get to c==3 then skip the iteration and be stuck at 3 forever?

astaphe
Автор

its for c language.sir i want looping statements for JavaScript.plz upload that

pondariramarao
Автор

bhai computer bata rehe ho toh computer par hi btao na

MereDaddyJi
Автор

the code for finding the average of 5 numbers using while loop in 6:55 does not work. instead i did it like this and it worked:

#include <stdio.h>

int main(){
int n1, n2, n3, n4, n5;
int count = 0;
float avg;
printf("enter the 5 numbers: ");
scanf("%d %d %d %d %d", &n1, &n2, &n3, &n4, &n5);

while(count<1)
{
count = count + 1;
avg = (n1+n2+n3+n4+n5)/5;
printf("Average = %.2f \n", avg);
}

return 0;
}

tteokmember