zlacker

[return to "The largest number representable in 64 bits"]
1. matja+5c6[view] [source] 2023-11-27 20:54:05
>>tromp+(OP)
IEEE754 64-bit representation already has infinity:

    uint64_t x = 0x7ff0000000000000ULL;
    printf("%f\n", *(double *)&x);
output:

    inf
But you could use a representation where 0 is 0, and 1 is infinity, saving 63 bits...
◧◩
2. toxik+bh6[view] [source] 2023-11-27 21:17:04
>>matja+5c6
Fair, but also an uninteresting answer.
[go to top]