If else-if ladder Statement

If else-if ladder Statement

  • The if else-if expression is used to execute multiple conditions of one code. The if else-if statement syntax is given below.
if(condition1){  
//code to be executed if condition1 is true  
}else if(condition2){  
//code to be executed if condition2 is true  
}  
else if(condition3){  
//code to be executed if condition3 is true  
}  
...  
else{  
//code to be executed if all the conditions are false  
}  

Flowchart of else-if ladder statement in C

  • The example of if-else-if statement in C language is given below.
#include<stdio.h>  
#include<conio.h>  
void main(){  
int number=0;  
clrscr();  
  
printf("enter a number:");  
scanf("%d",&number);  
  
if(number==10){  
printf("number is equals to 10");  
}  
else if(number==50){  
printf("number is equal to 50");  
}  
else if(number==100){  
printf("number is equal to 100");  
}  
else{  
printf("number is not equal to 10, 50 or 100");  
}  
getch();  
}  

Output


enter a number:4
number is not equal to 10, 50 or 100

enter a number:50
number is equal to 50

Post a Comment

Previous Post Next Post