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

  1.  
  2.    char *out_string;
  3.    switch (x) 
  4.       {
  5.       case 0:  
  6.            out_string = "zero"; 
  7.            break;
  8.       case 1:  
  9.            out_string = "one" ; 
  10.            break;
  11.       case 2:  
  12.            out_string = "two" ; 
  13.            break;
  14.       default: 
  15.            out_string = "lots"; 
  16.            break;
  17.        }
  18.  
  19.    printf ("The value is '%s'\n", out_string);
  20.  
  21.