DEV/BUT1/DEV1.1/Maths/Formules/exponentielle.c
2024-02-01 13:55:03 +01:00

19 lines
212 B
C

#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main(void)
{
double nombre=-1;
printf("La valeur de l'exponentielle est :%lf\n" , pow(exp(nombre),4));
return EXIT_SUCCESS;
}