问题详情
下列程序的输出结果是()。 fun(int a,int b,int c) { c=a*b; } void main() { int c; fun(2,3,c); printf(“%d\n”,c); }
A.0
B.1
C.6
D.无法确定
请帮忙给出正确答案和分析,谢谢!