Created
August 11, 2011 14:31
-
-
Save clarenced/1139793 to your computer and use it in GitHub Desktop.
Binary representation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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