Showing posts with label While Condition. Show all posts
Showing posts with label While Condition. Show all posts

Sunday, May 2, 2010

Do while Loop syntax in programming

the syntax of do while in programming:

initialization;
do
{
statements;
inc/dec;
}while(condition);

next Lesson i'll make a sample program using do while loop