home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource5 / 357_01 / cstar1.exe / IF.PP < prev    next >
Encoding:
Text File  |  1991-11-15  |  183 b   |  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.