Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###
- ### Little-endian machine:
- ###
- // dump float 1234567.0
- float: 1234567.000000
- int: 4996b438
- bytes: 38 b4 96 49
- LE-bits: 0 10010011 00101101011010000111000
- BE-bits: 0 00011100 01001001100101101011010
- // dump int 1234567
- float: 0.000000
- int: 0012d687
- bytes: 87 d6 12 00
- LE-bits: 0 00000000 00100101101011010000111
- BE-bits: 1 01000011 00000000000100101101011
- ###
- ### Big-endian machine:
- ###
- // dump float 1234567.0
- float: 1234567.000000
- int: 4996b438
- bytes: 49 96 b4 38
- LE-bits: 0 00011100 01001001100101101011010
- BE-bits: 0 10010011 00101101011010000111000
- // dump int 1234567
- float: 0.000000
- int: 0012d687
- bytes: 00 12 d6 87
- LE-bits: 1 01000011 00000000000100101101011
- BE-bits: 0 00000000 00100101101011010000111
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement