home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / c_plus_tut / examp_cpp / ch01_1 next >
Encoding:
Text File  |  1994-04-05  |  216 b   |  12 lines

  1.                               // Chapter 1 - Programming exercise 1
  2. #include "iostream.h"
  3.  
  4. main()
  5. {
  6.  
  7.    for (int index = 0 ; index < 3 ; index++) {
  8.       cout << "John Doe\n";
  9.       cout << "Jan 1, 1955\n\n";
  10.    }
  11. }
  12.