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

  1. /* PSTRING1.C: Look for null at string's end.  */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.    static char name[] = "john";
  8.    char *ptr = name;
  9.    while( *ptr )
  10.       printf( "*ptr = %c\n", *ptr++ );
  11. }
  12.