pow, powf, powl
Calculates x raised to the power of y. ... double pow( double x, double y ); double pow( double x, int y ); // C++ only float pow( float x, float y ); // C++ only float pow( float x, int y ); // C++ only long double pow( long double x, long double y ); //...