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

  1. // \EXAMPLES\EX1102.C
  2.  
  3. #include <stdio.h>
  4.  
  5. void main() {
  6.    char name[50];
  7.    int age;
  8.    printf("Please type in your name and age and hit ENTER \n");
  9.    scanf("%s %d", name, &age);
  10.    printf("Hello %s, your age is %d \n", name, age);
  11. }
  12.