// // Filename: pgm1.5a.cpp // // Description: Demonstration program for cout // // ENSC 104: Digital Computer Programming // // Section: 2 // // Date Created: 09/02/97 // Last Modified: 01/02/98 // // Name: Dr. Thomas R. Walsh // #include main() { cout << "Welcome to ESC 104: C++\n"; cout << "Welcome to ESC 104: C++" << "\n"; cout << "Welcome to ESC 104: C++" << endl; cout << "Welcome " << "to " << "ESC " << "104: " << "C++\n"; cout << "\tWelcome to ESC 104: C++\n\n"; cout << "Backslash a, sounds the bell... \a \n"; cout << "Use two backslashes, \\, to print one\n"; cout << "Escape the double quotes with a backslash...\"...\n"; cout << "Single quotes '...' do not pose a problem\n"; cout << "cout << \"Welcome!\";\n"; return 0; }