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

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