7.12.6.1 The exp functions
Synopsis
#include <math.h>
double exp(double x);
float expf(float x);
long double expl(long double x);
Description
The exp functions compute the base-e exponential of x. A range error occurs if the magnitude of x is too large.
Returns
The exp functions return ex.