19 lines
200 B
C
19 lines
200 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
int main(void)
|
|
{
|
|
double nombre=-3;
|
|
|
|
printf("La valeur du logartihme est :%lf\n" , log(nombre));
|
|
return EXIT_SUCCESS;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|