float f(float x){float y;y=x*x*x-16*x+80;return y;}void main(){float x;printf(“please input x= ”);scanf(“ %f”,&x);printf(“f(%3.2f) = %3.2f”,x,f(x));}