home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_02 / 1002109b < prev    next >
Text File  |  1991-12-04  |  310b  |  14 lines

  1.  
  2.    int index;   
  3.    #define SIZE_OUT_STRINGS 4
  4.  
  5.    char *out_strings[SIZE_OUT_STRINGS] 
  6.        = {"zero", "one", "two", "lots"}; 
  7.  
  8.    if (x < 0 || x >= SIZE_OUT_STRINGS - 1)
  9.        index = SIZE_OUT_STRINGS - 1;
  10.    else
  11.        index = x;  
  12.    printf ("The value is '%s'\n", out_strings[index]);
  13.  
  14.