I want to learn how the computer represents the double type in bit, but the & and | bit operators can't use double. And memcpy(&d, &src, 8) also doesn't seem to work. Any suggestions?
|
|
|||||||||
|
|
|
Here:
You can try it: http://codepad.org/onHnAcnC |
||||||||||||||||
|
|
|
That isn't going to be very enlightening unless you also know a bit about typical IEEE FP representations. Most likely the way your machine represents doubles is spelled out here. |
||
|
|
|
|
A particular bit layout by itself is meaningless. Suppose I have the following: Maybe I say that is unsigned and it represents the value 13. Maybe it is signed and that high bit signifies that the value is a negative which means it is now -5. Consider further that I consider the high two bits to be a base and the low two bits to be an exponent, then I get the value 3. You see, it isnt the storage, its the interpretation. Read up on how floating point values are represented and interpreted; it will serve you much better than seeing how the bits are packed. |
||
|
|
|
|
This works for me
The result is
|
||
|
|
|
|
The key is to convert the
|
||
|
|
|
Another option is to use bitfields. Armed with such a structure and knowledge of how a double is supposed to be stored on your computer you can very easily print out the different parts of the internal representation of the double. A bit like they do here. |
||
|
|
|
|
Or you could just read about the IEEE 754 standard, which specifies representation. |
||
|
|
