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

  1. // ex01004.cpp
  2. // Multiple data type to the standard output stream
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     int amount = 123;
  8.     cout << "The value of amount is ";
  9.     cout << amount;
  10.     cout << '.';
  11. }
  12.