Question: Write a recursive function called power that takes two integers, a base and an exponent and computes the power. For example, when this function is
Write a recursive function called power that takes two integers, a base and an exponent and computes the power. For example, when this function is called with base=2 and exponent=4, it computes 2^4=16. Your function should work when the exponent is negative, zero or positive

PLZ write it in c not c++
Write a recursive function called power that takes two integers, a base and an exponent and computes the power. For example, when this function is called with base-2 and exponent-4, it computes 244-16. Your function should work when the exponent is negative, zero or positive. Include the 'main' function in your code and show how the 'main' functions called the 'power' function. Make sure the function is recursive (it calls itsel), and not iterative
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
