Hello, I just wanted to ask about the processing times mentioned in video. Gary said that it is way faster to use Pow that Sqrt, however appliance in code showed the opposite. Can you please clarify?
Also tested it on my PC: Pow took around 5 seconds, whereas Sqrt took 1 second to process:
{
for(int i=0;i<100000000;i++)
pow(double(i),0.5);
for(int i=0;i<100000000;i++)
sqrt(double(i));
return 0;
}