Advertisement



< Prev
Next >



C - Else If Statement




In C language, the else-if statement consists of three parts -







Working of else-if


First the condition in the parenthesis of if is evaluated for a boolean value - true or false.




Advertisement




else if statement example


/* C - else if statement example */

#include<stdio.h>
int main()
{
if(99>100)
	printf("99 is greater than 100");
else if(99<90)
	printf("99 is less than 90");
	else
		printf("99 is greater than 90 and less than 100");
		
return 0;
}


Output


99 is greater than 90 and less than 100




Please share this article -





< Prev
Next >
< If Else Statement
Nested If Statement>



Advertisement

Please Subscribe

Please subscribe to our social media channels for daily updates.


Decodejava Facebook Page  DecodeJava Twitter Page Decodejava Google+ Page




Advertisement



Notifications



Please check our latest addition

C#, PYTHON and DJANGO


Advertisement