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

Write a recursive function called power that takes two integers, a base

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!