| | | | | |

Iterative Execution: the do while statement

    // initializer code goes here
    do
    {
      // update code goes in loop body
      // C++ statements
    }
    while ( continuation_condition ) ;
    

| | Top of Page | 2. Execution Control in C/C++ - 8 of 9