LIVE CHANNELS
Select You Favorite MOVIES in Category
Browse » Home » » The do...while loop

The do...while loop

The do...while loop

  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) ;
}
Related Videos