C math Functions

The mathematical library is a part of the C programming language standard library. All the C math functions take a single argument of double data type as the input and return the value of type double. However, the pow() function accepts two arguments and produces the power of data type double. 

  1. abs
  2. acos
  3. asin
  4. atan
  5. atan2
  6. cbrt
  7. ceil
  8. cos
  9. cosh
  10. exp
  11. fabs
  12. floor
  13. hypot
  14. log
  15. log10
  16. pow
  17. round
  18. sin
  19. sinh
  20. sqrt
  21. tan
  22. tanh
  23. trunc