On Tue, Aug 22, 2017 at 4:23 AM, Anders Lindgren <andlind@gmail.com> wrote:
> I think(*) you can use "%a" to print the hexadecimal representation of a
> floating point number. This prints the floating point number exactly, down
> to the last bit in the mantissa. It looks like 0x0.3p10, where 0x0.3 is the
> "significant" part and "p10" the binary exponent, and it represents the
> number 0x0.3 * 2^10.
I think this is GNU libc specific, also not as readable for humans.