cpp - template - skeleton


/ Published in: C++
Save to your folder(s)



Copy this code and paste it in your HTML
  1. //=========================================================//
  2. // SOURCEFILE.cpp //
  3. //=========================================================//
  4.  
  5.  
  6.  
  7. #include <iostream>
  8. using namespace std;
  9.  
  10. //GLOBAL DECLARATIONS
  11.  
  12.  
  13. //BOOTSTRAP
  14. //=========================================================
  15. int main() {
  16. cout << "Hello World !" << endl;
  17.  
  18.  
  19. return EXIT_SUCCESS;
  20. }//main
  21.  
  22. //FUNCTIONS DEFINITION
  23.  
  24.  
  25.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.