define P(x) {return 1 + 2*x + 3*power(x,2) + 4*power(x,3);} printf(" P(1) = %f P(2) = %f P(3) = %f P(4) = %f ", P(1), P(2), P(3), P(4) );