Turboc里面is up to date?什么意思啊

来源:百度知道 编辑:UC知道 时间:2024/05/31 16:39:14
我用C程序写了一套题
main()
{
printf(" Hello World ! ");
getchrt();
return 0;
}
没有任何错误 但是我点击编译 生成EXE文件

突然提示is up to date?

大家都知道XP是WIN32下的 请问TC到底是干啥用的?

学了半年都是DOS下的程序 感觉一无是处.
改成getchar()编译依旧提示:is up to date?

#include <stdio.h>
main()
{
printf(" Hello World ! ");
getchar();
return 0;
}
给成getchar();
可以运行
用DOS可能有些错误吧 毕竟DOS挺老的
下一个可以运行C的编译环境就不会有这些错误了
比如C-Free

那就用VC做开发工具啊
说难听点TC就是写过家家程序的,现在都用VC了。 。 。

getchrt();
改为
getchar();