Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <tgmath.h>
  3. #include <math.h>
  4. #include <errno.h>
  5. #include <fenv.h>
  6.  
  7. #pragma STDC FENV_ACCESS ON
  8. int main(void)
  9. {
  10.  
  11. long double val;
  12. scanf("%Lf", &val);
  13. printf("%.64Lf\n", sinl(val));
  14. return 0;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement