冪乗(exponentiation) は数学演算の一種です。
b^n
として表記され、
-
b =
底(base)
-
n =
指数(exponent)
を意味し、b の n 乗
と呼ばれます。
例
#include <math.h>
#include <stdio.h>
int main(void) {
double b, n, r;
b = 2.0;
n = 3.0;
p = pow(b, n);
printf("%lf to the power of %lf is %lf\n", b, n, p);
}
出力
2.000000 to the power of 3.000000 is 8.000000