如何在vc++6.0中显示可以在Turboc2中显示的程序
就简单点的吧如下段代码
#include<stdio.h>
#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");
getchar();
}
}