![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.05.55.02 > Chapter 6 Statements ![]() do...while |
|
The do statement executes statements within a loop until a specified condition is satisfied. This is one of the three looping constructions in C. Unlike the for and while loops, do...while performs statement first and then tests expression. If expression evaluates to nonzero (true), statement executes again, but when expression evaluates to zero (false), execution of the loop stops. This type of loop is always executed at least once. You can jump out of a do...while loop prematurely (that is, before expression becomes false) by doing the following:
/* Program name is "do.while_example". This program finds the If you execute this program, you get the following output: Enter an integer: 10 |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|