|
||
double exp( double x )
double x; /* a double value */
|
|
|
Synopsis |
#include "math.h"
The exp function evaluates the exponential function ex .
|
|
Parameters |
x may be any value.
|
|
Return Value |
The value of ex is returned; if overflow occurrs, then exp sets errno to ERANGE and returns HUGE_VAL ; if underflow occurrs, then exp sets errno to ERANGE and returns 0.
|
|
See Also |
|
|
|
|