一个编译错误问题
代码如下:
#include <stdio.h>
#include <conio.h>
main()
{
int i;
textbackground(0); /* 设置屏幕背景色 */
clrscr(); /* 清除文本屏幕 */
for(i=1; i <8; i++)
{
window(10+i*5, 5+i, 30+i*5, 15+i); /* 定义文本窗口 */
textbackground(i); /* 定义窗口背景色 */
clrscr(); /* 清除窗口 */
}
getch();
}
错误是: 'textbackground ' undefined; assuming extern returning int
请问是什么问题呢?
[解决办法]
提示textbackground没有定义
可能是你的编译器里面的#include <conio.h> 没有定义textbackground这个函数 VC6.0的#include <conio.h> 里面就没有定义textbackground
不过TurboC2.0 里面定义了 你可以用TurboC2.0试试看程序能通过不
[解决办法]
如果你是用vc的话,是没有这个东西的
用tc