Question: In C programming please complete the task in yellow Math library (HW) C includes a standard math library. Some examples: #include // Must include math.h
In C programming please complete the task in yellow

Math library (HW) C includes a standard math library. Some examples: #include // Must include math.h header! int main O double x - 1.5; double y-2.0; printf ("X-Klf printf ("x-% f printf ("x-Klf printf ("x=Klf printf ("X-% f ceil(x)-%lfNn", x, ceil(x) ); floor(x)-xAn", x, floor(x)); sqrt(x)-%1f '', x, sqrt(x)); exp(x) = %1f ", x, exp(x) ); log(x) -%1f ", x, log(x) ); 1/ 2.0 // 4.48 // 0.405 x-1.5; printf ("X-Klf printf ("-% f fabs(x) y-%1 f -%1f ", x, fabs(x) x^y-%1 fNn", , , ); pon(x,y) ); // 2.25 HW Exercise 2.10: In mathproblem.c write a method that computes the sum 1 1/2 1/4 + 1/2n for any input parameter n Note: To use the math library you must compile your code with the -1m flag. This should be at the end of your gcc command, e.g gcc mathprobLem.c-o mathprobLem -Lm