exp
Da cppreference.com
< cpp | numeric/math
Sintaxe:
#include <cmath> double exp( double arg );
A função exp() devolve e (2.7182818) elevado a arg.
O C++ também fornece as seguintes formas sobre-carregadas (overload):
#include <cmath> float exp( float arg ); // igual a expf() em C99 long double exp( long double arg ); // igual a expl() em C99