AFAIK, C supports just a few data types:
int, float, double, char, void enum.
I need to store a number that could reach into the high 10 digits. Since I'm getting a low 10 digit # from
INT_MAX
, I suppose I need a double.
<limits.h> doesn't have a DOUBLE_MAX. I found a DBL_MAX on the internet that said this is LEGACY and also appears to be C++. Is double what I need? Why is there no DOUBLE_MAX?
double, you need a 64-bit integral type (eitherlong long, oruint64_t). 2) If you do use adouble, you don't needDBL_MAX(which is the largest number that can be stored), you needDBL_DIG, which is the number of significant digits you can store. (It won't do you any good to be able to store 9999999999 if you can't distinguish it from 9999999998). In any event, on most systems, adoublecan precisely store all integers of the size you are asking for. – Robᵩ Apr 29 '11 at 17:12