| | | | | |

Iterative Execution: the while statement

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

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