View Single Post
Old 03-19-2005, 12:38 AM   #4 (permalink)
QUantumAnenome
Code Monkey
 
Join Date: Mar 2005
Posts: 56
QUantumAnenome is on a distinguished road
Send a message via Yahoo to QUantumAnenome
I just ran into this same problem. There are several pow() functions, because they covered all possibilities of argument flavors. I got an error because I happened to use one that didn't exist, pow(int, double). To fix it, I just typecast my int to a double;

int i;
double d, e;
...
e = pow((double)i, d);
QUantumAnenome is offline   Reply With Quote