试题详情

下列程序段输出结果是:fun(int a,int b,int c) { c=a b; } int main() { int c; fun(12,34,c); printf(%dn,c); return 0; }

A12

B34

C46

D不定值