The conditional clause (cont'd)

(Display Figure 7.)

The expression that you place in the conditional clause will be evaluated to determine which part of the selection structure to execute.

If the expression in the conditional clause evaluates to true

The code between the curly braces before the else clause will be executed.

If the expression in the conditional clause evaluates to false

The code in the body of the else clause will be executed.