home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 357_01 / cstar1.exe / IF.PP < prev    next >
Text File  |  1991-11-15  |  183b  |  18 lines

  1. #if a < 1
  2. "a is less than 1"
  3. #else
  4. "a is not less than 1"
  5. #endif
  6.  
  7. #if '0' < '1'
  8. "'0' < '1'"
  9. #else
  10. "'0' not < 'b'"
  11. #endif
  12.  
  13. #if 1
  14. "1" is true
  15. #else
  16. "1" is false
  17. #endif
  18.