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

  1. /* badref.c -- misusing a pointer                     */
  2. main()
  3. {
  4.     char name[81];
  5.     char *pt_ch;
  6.  
  7.     printf("Enter your first name: -> ");
  8.     scanf("%s", name);
  9.     *pt_ch = name[1];
  10.     printf("The second letter of your name is %c\n",
  11.             *pt_ch );
  12. }
  13.  
  14.