| | | | | |

Multiple Choice Execution: the else if statement

    if ( condition1 )
    {
      // statement1.1
      ...
    }
    else if ( condition2 )
    {
      // statement2.1
      ...
    }
    else
    {
      // statement3.1
      ...
    }
    // statement4
    

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