Help - why is there an issue with the power function?
the error states:
: error C2668: 'pow' : ambiguous call to overloaded function
void compute(int integer)
{
cout << integer;
int value = 9;
while(value > 0)
{
cout << ++ integer;
int square = pow(integer,2);
cout << square;
}
}