找考题网-背景图
单项选择题

以下程序的输出结果是()。
fun(int a,int b,int c)
{
c=a+b;
}
int main()
{ int c;
fun(2,3,c);
printf(“%d\n”,c);
return 0;
}

A.2
B.3
C.5
D.无定值