C int, float, double
- by anon
There are certain int values that a float can not represent.
However, can a double represent all values a float can represent? (My intuition says yes, since double has more fractional bits & more exponent bits, but there might be some silly gotchas that I'm missing).
Thanks!