C – If else Statement with Examples
The if else statement is used to express decisions and the syntax as per below,
if (expression) statement 1 else statement 2
where the else part is optional. The expression is evaluated; if it is true {that is, if>expression has … Read More