home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap16 / ibmiq.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-07  |  311 b   |  15 lines

  1. /* ibmiq.c -- a short dialog                          */
  2.  
  3. #include <stdio.h>
  4. main()
  5. {
  6.     char name[80];
  7.     int iq;
  8.  
  9.     printf("Enter your first name: -> ");
  10.     scanf("%s", name);
  11.     printf("Enter your IQ: -> ");
  12.     scanf("%d", iq);
  13.     printf("Well, %s, my IQ is %d!", name, 2 * iq - 1 );
  14. }
  15.