> How would you express infinity in binary? > > Lilith > Using doubles (8-byte): +inf: 3f f0 00 00 00 00 00 00 -inf: bf f0 00 00 00 00 00 00 Or in C: pinf = 1.0 / 0.0; ninf = -1.0 / 0.0; Cheers, André