Name the functions available in math.h and explain any two functions of math.h.
Answers
Answered by
1
Answer:
Important functions in math.h library of C
Function Description
ceil(x) rounds x to smallest integer not less than x
floor(x) rounds x to largest integer not greater than x
pow(x,y) x raised to power y (xy)
fmod(x) remainder of x/y as floating-point number
please follow me
Similar questions