19 lines
215 B
C
19 lines
215 B
C
#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;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|