Revisiting the Power Function
#include <iostream>
#include <cmath>
using namespace std
;
float
power (
int
base,
int
exponent);
int
main()
{
float
result;
int
base;
int
exponent;
cout << "Please enter integer base value " << endl;
cin >> base;