单选题 以下程序的输出结果是 (48)
fun(int x, int y, int z)
z=x*x+y*y;
main()
int a=31;
fun(5,2,

【正确答案】
【答案解析】[解析] fun函数的参数都是实参,虽然进行了运算,但是计算结果并不会改变a。所以a的值仍然是31。