单选题 以下程序的输出结果是 ______ 。
fun(int x,int y,int z)
z=x * x + y * y;
main()

int a=31;
fun(5,2,

【正确答案】 C
【答案解析】[评析]本题中,a的值并没有改变,因为传递到函数中的是变量值。