[求助]问题
在vc++6.0里运行这个怎么不可以?提示错误textbackground没有定义
这个函数是包含在conio.h文件里的啊~!!
#include<conio.h>
#include<stdio.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();
}
}