Advertisement



< Prev
Next >


C - If Else Statement





In C language's if-else statement, the condition in the parenthesis of if is evaluated for a boolean value - true or false.




Advertisement




if else example


 /* C - if else example */


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


Output -

100 is greater than 50 


Please share this article -





< Prev
Next >
< If Statement
Else-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