为什么我用TC2.0 printf语句里面的 %d 后面不制定变量名也可以显示啊
#include <stdio.h>int main (void)
{
int s;
s = 52;
printf ("there are %d weeks in a year.\n", s); \\最后 , s 忘了打了 结果还是正确的 %d 自动找到了变量s.....
return 0;
}
这是为什么。。。
2010-07-10 14:20
2010-07-11 00:28

2010-07-11 00:35

2010-07-11 00:42
2010-07-11 00:49
2010-07-11 01:04
2010-07-11 09:42