Source Code : Control Statement In C

Control Statement In C

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)