home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_09 / 1109112a < prev    next >
Text File  |  1993-07-13  |  257b  |  21 lines

  1. /* array4.c: Indexing a string literal */
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.     int i;
  7.  
  8.     for (i = 0; i < 10; i += 2)
  9.     {
  10.         char c = "0123456789"[i];
  11.         putchar(c);
  12.     }
  13.     putchar('\n');
  14.     return 0;
  15. }
  16.  
  17. /* Output
  18. 02468
  19. */
  20.  
  21.