////////////////////////////////////////////////////////////////////////// // hello.c // // // // Purpose // // ======= // // This program is a first simple C++ program to be used to // // demonstrate editing, compiling, and simple output, and the overall // // structure of a simple C++ program. // // (Lines like this are comments - described in Section 4.4. // // // // Author Creation Date // // ====== ============= // // P.A. Lee 12 December 1995 // // // // Input/Output // // ============ // // The program outputs some messages. There is no input. // // // ////////////////////////////////////////////////////////////////////////// #include using namespace std; int main() { cout << "Hello "; cout << "Your name" << endl; cout << "Welcome to EEE1004" << endl; return 0; }