machar, a C++ code which dynamically computes constants that characterize the floating point arithmetic system on a computer, by William Cody.
This includes the value of the "machine epsilon", the smallest number that can be added to 1 and make a difference. However, it includes many other quantities of interest, including the arithmetic base, the largest and smallest magnitudes, and so on.
Many compilers now do certain kinds of optimization that may cause the code to fail. The most noticeable symptom is that the code may fall into an infinite loop. If you notice this, recompile the code with compiler optimization turned off, or set to the lowest level.
The FORTRAN77 version of these routines was supplied as part of ACM TOMS algorithm 665.
A C version of these routines was supplied as part of ACM TOMS algorithm 722.
The computer code and data files described and made available on this web page are distributed under the MIT license
machar is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version and a Python version.
MACHINE, a C++ code which stores the appropriate values of machine constants for a given machine.
Original FORTRAN77 version by William Cody. C++ version by John Burkardt.