| | | | | |

Binary Choice Execution: the else statement

    if ( condition )
    {
      // statement1.1
      // statement1.2
      // statement1.3
    }
    else
    {
      // statement2.1
      // statement2.2
      // statement2.3
    }
    // statement3
    

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