Table of Contents
Previous Section Next Section

exp

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

expf( ) and expl( ) were added by C99.

The exp( ) family of functions returns the natural logarithm e raised to the arg power.

Related functions are exp2( ) and log( ).


Table of Contents
Previous Section Next Section