Advertisement
Jkljk

MODULARIZAÇÃO - trigo.h

Sep 14th, 2020
1,162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. #ifndef TRIGO_H//TRIGO.H
  2. #define TRIGO_H
  3. #include <stdio.h>
  4. #include <string.h>
  5. #define PI 3.1415
  6. #define termos 10
  7. double grausRadianos(double x);
  8. double fat(double a);
  9. double potencia(double base, double expoente);
  10. double cosseno(double x);
  11. double seno(double x);
  12. double tangente(double x);
  13.  
  14. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement