1.6.4 do

The do…while construct provides an iterative loop.

Syntax:

do statement… while( expression );

statement is executed repeatedly as long as expression is true. The test on expression takes place after each execution of statement.

Examples:

do {
  betty++;
  printf("%i",betty);
} while (betty<100);