Calculates the exponential of a double value.
#include <math.h> double exp (double x);
x
The exponential value of the floating-point parameter x
.
On overflow, the function returns HUGE_VAL and sets errno to ERANGE.
0 (zero) on underflow, but the function does not set errno.
Note: This function does not return standard ANSI domain or range errors.
Versions | Defined in | Include | Link to |
---|---|---|---|
INtime 3.0 | intime/rt/include/math.h | math.h | clib.lib |