Defined in #include <math.h> Syntax: double pow( double b, double p ); Description: It returns base (b) raised to the power(p). Example: double x = pow(2,3) will return 2 x 2 x 2 = 8