在C語言中,power函數用于計算一個數的冪。
函數原型為:
double pow(double x, double 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("%f raised to the power of %f is %f\n", base, exponent, result);
return 0;
}
輸出結果:
2.000000 raised to the power of 3.000000 is 8.000000
在上面的示例中,pow函數計算了2的3次方,得到了8的結果。