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

  1.  
  2.    printf("The value is '%s' \n", (x == 0 ? "zero" :
  3.                                   (x == 1 ? "one" :
  4.                                   (x == 2 ? "two" :
  5.                                   "lots"))); 
  6.  
  7.