A second-degree polymonial in x is given by the expression ax2+bx+c, where a, b, and c are known numbers and a is not equal to 0. What a C function named polyTwo (a, b, c, x) that computers and returns the value of a second-degree polynomial for any passed values of a, b, c, and x. Make sure your function is called from main (). Have main() input values of a, b, c, and x, call function polytwo() to get and display the value retuned. Test the function by passing various data to it