The if else statement is used to make decisions. The syntax is:
if (
expression )
statement-1
else
statement-2
expression is evaluated; if it is not equal to zero (e.g., logic true), then statement-1 is executed.
The else clause is optional. If the if part of the statement did not execute, and the else is present, then statement-2 executes.