Calculate Exponentials
Create a recursive function to calculate the a value of a certain exponent.
Use the following incomplete function definition:
int power(int base, int exp) {
    // ...
}Create a recursive function to calculate the a value of a certain exponent.
Use the following incomplete function definition:
int power(int base, int exp) {
    // ...
}