7.12.6.1 The exp functions

Synopsis

1

#include <math.h>
double exp(double x);
float expf(float x);
long double expl(long double x);

Description

2

The exp functions compute the base-e exponential of x. A range error occurs if the magnitude of x is too large.

Returns

3

The exp functions return ex.