主题:请教
main()
{ int i;
void count();
for(i=1;i<=3;i++)
count(i);
}
void count(int n)
{
int x;
printf ("%d:x=%d,",n,x);
x+=2;
printf ("x+2=%d\n",x);
}
请问上题的输出结果是什么?
{ int i;
void count();
for(i=1;i<=3;i++)
count(i);
}
void count(int n)
{
int x;
printf ("%d:x=%d,",n,x);
x+=2;
printf ("x+2=%d\n",x);
}
请问上题的输出结果是什么?