Still More About Output
Statements
   cout << “Hi there, ” << endl;
   cout << “Lois Lane. ” << endl;
   cout << “Have you seen ” << endl;
   cout << “Clark Kent?” << endl;
Output
   Hi there,
   Lois Lane.
   Have you seen
   Clark Kent?