home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / EXAMPLES / EX1101.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-27  |  279 b   |  14 lines

  1. // \EXAMPLES\EX1101.CPP
  2.  
  3. #include <iostream.h>
  4.  
  5. void main() {
  6.    char name[50];
  7.    int age;
  8.    cout << "Please type in your name and age and hit ENTER"
  9.         << endl;
  10.    cin >> name >> age;
  11.    cout << "Hello " << name << ", your age is " << age
  12.         << endl;
  13. }
  14.