// // Filename: // // Description: Demonstration program for lecture #2 // // ENSC 104: Digital Computer Programming // // Section: 1 and 2 // // Date: 09/02/97 // // Name: Dr. Thomas R. Walsh // #include #include main() { // // cout only works in C++, not C // cout << "Welcome "; cout << "to "; cout << "ESC "; cout << "104: "; cout << "C++"; cout << endl; // // C printf()'s work in C++ // printf("Welcome to ESC 104: C++\n"); return 0; }