#include #include /* Your mission is to implement the power function * in the function declaration below. */ double power(double x, int n) { /* BEGIN ANSWER -- do not delete this line */ /* END ANSWER -- do not delete this line */ } /* DO NOT ALTER THE main PROGRAM */ int main(void) { double base; int exp; printf("Enter the base: "); scanf("%lf", &base); printf("Enter the exponent: "); scanf("%d", &exp); printf("\n%f to the power of %d is %f.\n", base, exp, power(base, exp)); printf("\n"); return EXIT_SUCCESS; }