fun(int a, int b, int c)
{ c =a*b; }
void main( )
{ int c;
fun(2,3,c);
printf(”%d\n”,c);
}为什么C的值不确定??哪位可以详细解答下???小弟谢过了