Write a recursive function named power()that takes two integers as arguments. The function finds the value of the first integer raised to the power of the second integer. Base your recursive function on the knowledge that for any two numbers x and n, xn = x * xn–1. Write a main()function that demonstrates that the power()function works correctly. Save the file as Power.cpp.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.