[讨论]Win-Tc与Tc同一代码不同输出结果~~~
#include <stdio.h>#include <time.h>
void main(void)
{
time_t current_time;
time_t start_time;
printf("Delay 5 seconds");
time(&start_time);
do
{
time(¤t_time);
}while((current_time-start_time)<5);
printf("Done\n");
getch();
}
上面这段代码在Tc和VC++的调试中的调试结果都是
Delay 5 secondsDone 表示延时5秒以后退出
但是用Win-Tc调试的事后显示的却是
这是为什么呢?难道Win-Tc和Tc的库函数不相同吗?
----------------解决方案--------------------------------------------------------
把你的time.c换个文件名,你的执行文件和系统内置的time命令冲突了。
----------------解决方案--------------------------------------------------------
果然如2楼所说,但是就算这样Tc照样可以编译出来~~~
以后我要注意点了~~~取名不能太简单
----------------解决方案--------------------------------------------------------
为什么还要用TC?
----------------解决方案--------------------------------------------------------