[讨论]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的库函数不相同吗?