Page 5 - FP 201 – Programming Fundamentals
P. 5

1.1.2 C++ Program Structure










              preprocessor directives                                                 #include <iostream>


              main function heading                                                   int main( )



              {                                                                       {



                        declarations
                                                                                                // statement(s);
                        executable statements



              }                                                                       }
   1   2   3   4   5   6   7   8   9   10