You are on page 1of 1

!!!Do while loop !!!

Syntax:

<intilialization>

Do

<statement 1>

<statement n>

<increment/decrement>

} While(<exit.conditon>);

Example>>

Int a=4;

Do

Printf(“A”);

}while (a==4(any natural number can be written except 0));

You might also like