home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / pstring3.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-07  |  267 b   |  13 lines

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