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

  1. /* PSTRING2.C: Demonstrate strings and array 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.