DEV/BUT1/DEV1.1/Maths/Formules/arctan.c

19 lines
215 B
C
Raw Normal View History

2024-02-01 13:55:03 +01:00
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main(void)
{
double nombrearctan=13;
printf("La valeur de arctan est :%lf\n" , atan(pow(nombrearctan,2)));
return EXIT_SUCCESS;
}