math.h


Función exp ANSI C

double exp(double x);

Calcula la función exponencial de x.

Valor de retorno:

La función exp retorna el valor de ex.

Ejemplo:

#include <stdio.h>
#include <math.h>
 
int main()
{
   double x = -5.567;

   printf( "exp( %f ) = %f\n", x, exp(x) );
   return 0;
}