Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 24th, 2012  |  syntax: None  |  size: 0.14 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. 0x00000000 hexadecimal?
  2. $ABCD
  3. ABCDh
  4. X'ABCD'
  5. "ABCD"X
  6.        
  7. int ten_i = 10;
  8. int ten_h = 0xA;
  9.  
  10. ten_i == ten_h; // this boolean expression is true