The do...while construct provides an iterative loop.
Syntax: dostatement...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);
Note: To report broken links or to submit your projects,
tutorials please email to Webmaster