注意:此页面搜索的是所有试题
int a;
main()
{
int i;
i=a=1;
sub();
printf("a=%d i=%d\n",a,i);
}
sub()
{
int i;
i=a=2;
}

参考答案