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

  1. // ex01009.cpp
  2. // C++ comments
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.     char name[20];                // declare a name string
  8.     cout << "Enter a name...";    // request a name
  9.     cin >> name;                // read the name
  10.     // ------------ display the name
  11.     cout << "The name you entered was " << name;
  12. }
  13.