下列程序的输出结果是 int a=1; int f () { int a=2;return a;} void main() {printf("%d,%d",a,f());}
A.1,1 B.1,2 C.2,1 D.2,2
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。