Thursday, 30 January 2014

C++ langauge Program Structure


C++ langauge Program Structure






  • Documentation Section
  • Preprocessor  Statement
  • Global Declaration
  • The Main Function
  •  User Define Function

Example

  include <Stdio.h>
  include<conio.h>
  
  void main( )
  {

       printf("Hello World");
     
         getch();

  }

0 comments:

Post a Comment