在C語言中,disp
函數并不是一個標準庫函數
#include<stdio.h>
#include <math.h>
void disp(double x) {
printf("The result is: %f\n", x);
}
int main() {
double a = 2.0;
double b = 3.0;
double c = pow(a, b); // 使用 math.h 庫中的 pow 函數計算 a 的 b 次方
disp(c); // 調用自定義的 disp 函數顯示結果
return 0;
}
在這個例子中,我們首先包含了 stdio.h
和 math.h
頭文件。然后,我們定義了一個名為 disp
的函數,該函數接受一個 double
類型的參數并將其打印到控制臺。在 main
函數中,我們使用 pow
函數計算 a 的 b 次方,并將結果存儲在變量 c
中。最后,我們調用 disp
函數來顯示計算結果。