Question: Write in C. Write a recursive function called power that takes two integers, a base and an exponent and computes the power. For example, when
Write in 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 24-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
