| | | | | |

Conditional Execution: the if statement

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

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