题目内容
有以下程序:
include <stdio.h>
int a=1,b=2:
void funl(int a,int b)
{printf("%d%d",a,b); }
void fun2()
{ a=3;b=4; }
main()
{ funl(5,6);fun2();
printf("%d%d\n",a,b);
}
程序运行后的输出结果是()。
查看答案
搜索结果不匹配?点我反馈