这个怎么运行不了
#include<stdio.h>#include<conio.h>
void main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color);
cprintf("this is the color%d\r\n",color);
cprintf("press any key to continude");
getchar();
}
}
error C2065: 'textbackground' : undeclared identifier应该怎么改?