Comparison Operators in if Statement : Tutorial on If
Example :
void main ( )
{
int x = 10 ;
if ( x > 0 ) // Comparison
printf (“n Number is Positive”);
}