is math.h functions not recommended when wanting speed? I remember seeing one of you guys commenting on someone using pow awhile ago, so what's the secret here?
Name:
Anonymous2010-11-20 11:14
use this:
double powd(double x,double y)
{
int i;
for(i=0;i<y;i++)
x*=x;
return x;
}