Multiple Conditions In if Statement : Tutorial on If >> C Programming
Example :
void main ( )
{
int x = 10 ;
if ( x < 0 && x != 0 )
printf (“n Number is Negative”);
else
printf (“n Number is Positive”);
else
printf (“n Number is Positive”);
}