INtime SDK Help
exp

Calculates the exponential of a double value.

#include <math.h>

double exp (double x);

Parameters

x
Value to calculate exponential for.

Return Values

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.

Requirements

Versions Defined in Include Link to
INtime 3.0 intime/rt/include/math.h math.h clib.lib

See Also

log