if else statement in C
The if Statement: C uses the keyword if to implement the decision control instruction. The general form of if statement looks like this: The keyword if tells the compiler that what follows is a decision control instruction. The condition following the keyword if is always enclosed within a pair of parentheses. x==y x is equal …