Gets the mantissa and exponent of a double value.
#include <math.h> double frexp (double x, int *expptr);
x
expptr
Breaks down the value x
into a mantissa m
and an exponent n
, such that the absolute value of m
is greater than or equal to 0.5 and less than 1.0, and x
= m
* 2n
.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/rt/include/math.h | math.h | clib.lib |