C Language Please use comments Define a macro named FOFX tha
C Language, Please use comments.
Define a macro named F_OF_X that would evaluate the following polynomial for the x value passed as its argument. You may assume that the math library has been included.
Solution
// x5 is evaluated by pow(x,5)
// 3x3 is evaluated by 3 * pow(x,3)
