// cout_tst.cpp // demonstrates stream I/O, cout #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."; float her_height = 1.69; cout << "\nShe is " << her_height << " meters tall."; cout << "\nHellen\tJohn\tJoan" << "\nSean\tTobby\tBoris"; getch(); } // main()