Write a C program to read an equation.
a/b*x^c*fun(alpha)+d/e*x^f*fun(beta)+g
a-f are integers, alpha and beta are angle from 0-360.
g is real number(float).
function is either sin, cos or tan.
After reading the equation, and its parameters, ask the user to
enter an range for x, and evaluate the given function.
Display a table x, fx with 10 spaces each, and 5 digits of
precision.
Can use only pow, and the sin,cos, and tan function in
math.h.
Cannot use C-...