pow() c

C
int base = 3;
int power = 5;
pow(double(base), double(power));[Mathematics] xy = pow(x, y) [In programming]The function pow() is used to calculate the power raised 
to the base value. It takes two arguments. It returns the
power raised to the base value. It is declared in 
“math.h” header file.int banana = 1;

Source

Also in C: