C language

1) If statement:


The if statement is a powerful decision making statement and is used to control the flow.
It allows the computer to evaluate the expression and then transfers the control to a particular statement depending on condition is true or false. Syntax:
if(condition)
{
statements; }



Comments