For loops
The syntax of for loop is
for(initialisation;conditionchecking;increment)
{ set of statements
}
Eg: Program to print Hello 10 times
for(I=0;I<10;I++)
{ printf(“Helloâ€);
}
Eg: Program to Addition of 1 to 10 No.
Int a;
for(I=0;I<10;I++)
{ a=a+I;
}
While loop
The syntax for while loop
while(condition)
{
statements;
}
Eg: a=10;
while(a != 0) Output: 10987654321
{
printf(“%dâ€,a);
a--;
}
Do While loop
The syntax of do while loop
do
{
set of statements
}while(condn);
Eg:
i=10; Output:
do 10987654321
{
printf(“%dâ€,i);
i--;
}while(i!=0)
Copyright © 2011 - All Rights Reserved - Softron.in
Template by Softron Technology