โ Back to Functions
Question 256
Power Function
Power Function
Write a function long long power(int base, int exp) that returns base raised to the exp power, WITHOUT using the library pow function. Assume exp is 0 or greater. Anything to the power 0 is 1.
For power(2, 5) the program prints 32.Expected Output:
32
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.