The do...while loop : Do While « Statement « C Tutorial






  1. The do...while loop checks the conditional expression only after the repetition part is executed.
  2. The do...while loop is used when you want to execute the loop body at least once.

The general form of the do...while loop is

do {
       repetition part;
    } while (expr);
#include <stdio.h>

main(){
    int i,n = 5;
    i = 0;

    do{
        printf("the numbers are %d \n",i);
        i = i +1;
    }while( i<n) ;
}
the numbers are 0
     the numbers are 1
     the numbers are 2
     the numbers are 3
     the numbers are 4








6.8.Do While
6.8.1.The do...while loop
6.8.2.Reversing the digits: do while loop
6.8.3.Read number in a range
6.8.4.Nest for loop inside do while loop