谁来帮帮我,感谢!
请问这个程序哪里错了,连接后说是textbackground()没定义,那要怎么定义呢?#include<conio.h>
void main()
{
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();
}
}