TP Intégration Numérique
 All Files Functions
test01.c
1 #include <math.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4 
5 
6 int main(){
7  double X=M_PI;
8  printf("cos(x)=",cos(X));
9  return EXIT_SUCCESS; // return 0
10 }