Electrical and Computer Engineering
17 of 24
UAH
CPE 112
Another Output Example
•Statements
• cout << “Hi there, ” << endl;
• cout << “Lois Lane. ”;
• cout << “Have you seen ” << endl;
• cout << “Clark Kent?” << endl;
•Output
• Hi there,
• Lois Lane. Have you seen
• Clark Kent?
•