qc.hlp (Table of Contents; Topic list)
PSTRING.C
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
/* PSTRING.C: Demonstrate pointer to a string. */
 
#include <stdio.h>
 
main()
{
   int count;
   static char name[] = "john";
   char *ptr = name;
   for( count = 0; count < 4; count++ )
   {
      printf( "name[%d]: %c\n", count, *ptr++ );
   }
}