Write a C program to compute the result of a 3rd-order polynomial equation of the form y = a*x3 + b*x2 + c*x + d, as follows:
a. Receive four integer inputs for the values of a, b, c, and d, respectively, and store them to a single array
b. Receive an additional integer input for the value of x
c. Compute the result, y, as an integer and output that value to the screen