Compound ‘ if Statement ‘ / Multiple Statements after ‘ if ‘  : Tutorial on If

  1. Compound Statements after if Requires Opening And Closing Braces
  2. Example : 
             void main ( )
             {
             int x = 10 ;
             if ( x  > 0  )
                      {
                      printf (“n Number is Positive”);
                      printf (“nThis is The Example of Compound Statement “);

                      }

             }