I am using GCC 3.4 on Linux (AS 3) and trying to figure out to get DBL_EPSILON, or at least a decent approximation. How can I get it programmatically?
DBL_EPSILON
In C++ it's std::numeric_limits::epsilon().
std::numeric_limits::epsilon()