// endl_tst.cpp // demonstrates stream I/O, cout and endl #include // for cout and endl #include // for getch() void main(int argc, char* argv[] ) { float his_height = 1.73; cout << "He is " << his_height << " meters tall." << endl; float her_height = 1.69; cout << "She is " << her_height << " meters tall."; getch(); } // main()