If else

If Else

#In general it can be used to execute one block of statement among two blocks, in C language ifand else are the keyword in C.

Syntax

if(condition)
{
........
statements
........
}
else
{
........
statements
........
}
In the above syntax whenever condition is true all the if block statement are executed remaining statement of the program neglecting. If the condition is false then else block statement will executed and neglecting if block statements.

Example

#include<stdio.h>
#include<conio.h>

void main()
{
int time=10;
clrscr();
if(time>12)
{
printf("Good morning");
}
else
{
printf("Good after noon");
}
getch();
}

Output

Good morning

0 comments: