โ Back to Functions/Methods
Question 298
Function: Recursive Power
Function: Recursive Power
Write a recursive functionpower(int base, int exp)that returnsbaseraised toexp(assumeexp >= 0). The base case isexp == 0returning1; otherwise returnbase * power(base, exp - 1). Call it with2and10and print the result: 1024 Print with%d. Do not use a loop.
Expected Output:
1024
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.