Mega Code Archive

 
Categories / C Tutorial / Statement
 

To execute only one statement, opening and closing braces are not required

#include <stdio.h> main(){   int i = 5;   if(i > 0)      printf(" i > 0. \n");       } i 0.