在TC2.0下可以运行的程序在C-FREE下面咋就不行了呢?
#include<conio.h>
int main(void)
{
int color;
for(color=1;color<16;color++)
{
textcolor(color);
cprintf("This is color %d\n",color);
}
textcolor(128+15);
cprintf("This is blinking\n");
}
在TC下运行的挺好。在vc++ 6.0 和 C-Free下就挂了,在C-Free 下编译通过。但执行的时候,就有错误,
undefined reference to 'textcolor' ....
该怎么解决才好,有没有什么帮助文档呢。