Skip to content

Instantly share code, notes, and snippets.

@clarenced
Created August 11, 2011 14:31
Show Gist options
  • Save clarenced/1139793 to your computer and use it in GitHub Desktop.
Save clarenced/1139793 to your computer and use it in GitHub Desktop.
Binary representation
//Un nombre au format hexa
int hexa = 0x12345;
//Un nombre au format binaire
int binary = 0b01110111;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment