if ( 2 < 4 )
printf( “two is less than four, that’s not a surprise” );
this syntax can be used with your program by simply including the header file and few statements .If you have more than one statements,use braces, like we did with the body of the main function. Anything inside braces is called a compound statement. When using if statements, the code that depends on the if statement is called the “body” of the if statement.So the right syntax will be (more…)
