/ Published in: C++
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//=========================================================// // SOURCEFILE.cpp // //=========================================================// #include <iostream> using namespace std; //GLOBAL DECLARATIONS //BOOTSTRAP //========================================================= int main() { cout << "Hello World !" << endl; return EXIT_SUCCESS; }//main //FUNCTIONS DEFINITION