衝啊!pointer!
今日主題:指標與函數
函數的呼叫可分為傳值與傳址。
傳值:傳遞的是參數的值
傳址:傳遞的是參數的位址
請看程式碼:(傳值型)
#include <stdio.h>
double Average(double, double);
main()
{
double x=1.0, y=2.0;
printf("%.2f\n", Average(x, y)); //1.50
}
double Average(double a, double b){
return (a+b)/2;
}