0
votes
How to write portable floating point arithmetic in c++ ?
I believe "limits.h" will include the C library constants INT_MAX and its brethren. However, it is preferable to use "limits" and the classes it defines:
std::numeric_limits<float> …
