问题详情
以下程序的输出结果是()。 fun(int x,int Y,int z) { z=x*x+y*Y; ) void main() { int a=31; fun(5,2,a); printf(“%d”,a); }
A.0
B.29
C.31
D.无定值
请帮忙给出正确答案和分析,谢谢!