Prototype: double pow(double b, double p); Header File: math.h (C) or cmath (C++) Explanation: This function raises b to the p power. example: cout<<"4 to the 5th power is: "<<pow(4, 5);