帮忙看看哪里出错了,一个有关颜色的程序
#include <conio.h>void main(void)
{
int color;
for (color = 0; color < 8; color++)
{
textbackground(color);/*设置文本的背景颜色*/
cprintf("This is color %d\r\n", color);
cprintf("Press any key to continue\r\n");
getch();/*输入字符看不见*/
}
}
错误提示说 textbackground这个错误 要怎么改正