5.5.1 If…else Statements
If…else statement performs an indicated action only when the condition n evaluates to true; otherwise that action is skipped. The if…else selection statement allows you to specify that a different action is to be performed when the condition is true than when the condition is false. Syntax If (condition) { Code to be executed if
more..