home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX01005.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  167 b   |  10 lines

  1. // ex01005.cpp
  2. // Several outputs in one statement
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     int amount = 123;
  8.     cout << "The value of amount is " << amount << '.';
  9. }
  10.