在C语言中,幂函数可以使用pow()函数来表示。该函数位于math.h头文件中。
pow(x, y)函数的作用是计算x的y次幂。其中,x和y可以是整数、浮点数或双精度数。
使用示例:
#include <stdio.h>
#include <math.h>
int main() {
double base = 2.0;
double exponent = 3.0;
double result = pow(base, exponent);
printf("%lf^%lf = %lf\n", base, exponent, result);
return 0;
}
输出结果:
2.000000^3.000000 = 8.000000
在上述示例中,我们使用pow()函数计算了2的3次幂,结果为8.0。