|
do..while
|
Batch language command
|
|
The 'do..while'loop. Cond is a logical expression. The loop is executed while Cond evaluates to non-zero.
|
Syntax
|
do{..body..}while(Cond);
|
Notes
|
The brackets must be included in the statement.
|
Examples
|
do { i = Random (0,125); fprintf (stdout, "\n", i); } while ((i>0)&&(i<100));
|
|
Last modified: 8/19/2002 |
|
|