exp
De cppreference.com.
< cpp | numeric/math
Syntaxe :
#include <cmath> double exp (double arg);
La fonction exp() renvoie e (2.7182818...) élevé à la puissance arg.
Le C++ fournit également les implémentations suivantes :
#include <cmath> float exp (float arg); // identique à expf() en C99 long double exp (long double arg); // identique à expl() en C99