home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc / qc25 / pstring3.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-15  |  262 b   |  12 lines

  1. /* PSTRING3.C: Strings and pointer notation.  */
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. main()
  6. {
  7.    int count;
  8.    char name[] = "john";
  9.    for( count = 0; count < strlen( name ); count++ )
  10.       printf( "*(name+%d) = %c\n", count, *(name+count) );
  11. }
  12.