To the power of
Note that in math notation ^ is used, but it can’t be used in C because it’s used as a bitwise operator.
[Mathematics] xy = pow(x, y) [In programming]
#include <math.h>
//Use the following function:
//For a double: double pow(double x, double y);
//For a float: float powf(float x, float y);
double MyDouble = pow(2,4);
MyDouble will be the resul of 2^4 = 16 (in math notation)
