Question: Please create a single script that will perform the following computation by using the given functions. a). Use ceil() function in C to find the
Please create a single script that will perform the following computation by using the given functions. a). Use ceil() function in C to find the smallest integer value greater than or equal to x= 1.6 and y = -5.2 b). Use floor() function in C to find the largest integer value less than or equal to x= 1.6 and y = -5.2 c). Use fabs() function in C to find the absolute value of x= 1.6 and y = -5.2. d). Use log() function and log10 function to find the base e log value and base 10 log value of z = 100. e). Use fmod() function to find the remainder of a divided by b when a = 9.7 and b = 3 and the remainder of x divided by c when a =9.7 and c= 2.5. f). Use sqrt() function to find the square root of d2+f2 when d = 3 and f =4. g). Use pow() function to find df when d = 3 and f =4. h). Use exp() function to find e3. i). Evaluate g5 + 3g4+egcos(g)sin(g)-5g2+log(g) when g = 5. j). Evaluate cos(sin(log(e3))) when g = 5.
PLEASE USE C LANGUAGE AND include 
ceil (1.6) and ceil(-5.2) are 2.00 and -5.00. floor(1.6) and floor(-5.2) are 1.00 and -6.00. fabs (1.6) and fabs (-5.2) are 1.60 and 5.20. log(100.0) and log10 (100.0) are 4.61 and 2.00. fmod (9.7,3.0) is 0.70. fmod (9.7,2.5) is 2.20. The Square Root of (3.04 + 4.0^2) is 5.00. 3.0^4.0 is 81.00. e^3 = 20.09 g^5+3*9^4+e^g*cos (g) *sin (g) -5*9^2+log (g) when g cos (sin(log (e^3))) when g = 5.0 is 0.99. = 5.0 is 4836.24. ... Program finished with exit code 0 Press ENTER to exit console
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
