C Tutorial/math.h/const
Mathematical Constants
HUGE_VALF A float version of HUGE_VAL HUGE_VALL A long double version of HUGE_VAL INFINITY A value representing infinity NAN Not a number
- #define NAN (0.0F/0.0F)
- #define HUGE_VALF (1.0F/0.0F)
- #define HUGE_VALL (1.0L/0.0L)
- #define INFINITY (1.0F/0.0F)