The function sqrt() takes a single argument (in double ) and returns the square …
The pow function returns x raised to the power of y. If x is negative and y is no…
The sin() function returns the sine of an argument (angle in radians). It is def…
The log10 function returns the logarithm of x to the base of 10. Sample Program: …
The log function returns the logarithm of x to the base of e. Sample Program:…
cos() takes a single argument in radians and returns a value in type double . The …
The floor function returns the largest integer that is smaller than or equal to …
The ceil function returns the smallest integer that is greater than or equal to …
abs( ) function in C returns the absolute value of an integer. The absolute value…