根據以下 C 程式,下列敘述何者正確?void AddTogether(int x, int y){printf("Sum:%d\n", x+y);}int main(){int a=100, b=100;AddTogether(a, b);return 0;}
A第一行 void AddTogether(int x, int y)內,x 和 y 是實際參數(actual parameters)
B第五行 int a=5, b=10;為全域變數
C第六行的 AddTogether(a, b);內的 a 和 b 稱為引數(argument)正確答案
D本程式沒有形式參數(formal parameters)
答案與詳解
