if..else Statement in C
The if statement followed by an optional else statement, which executes when the conditional expression is false.
If the conditional expression evaluates to true, statements of if
block are executed and statements of else
block are skipped.
If the conditional evaluates to false, statements of else
block are executed and statements of if
block are skipped.
Syntax
Program
Output
Join Our Social Media Connections
0 Comments