文本颜色
#include "stdafx.h"#include "conio.h"
int _tmain(int argc, _TCHAR* argv[])
{
int color;
for (color=1;color<16;color++)
{
textcolor(color);
cprintf("this is color%d\r\n",color);
}
textcolor(128+15);
cprintf("this is blinking\r\n");
return 0;
}
在vs2005中不能运行 为什么?有这样的错误:\文本颜色设置.cpp(12) : error C3861: 'textcolor': identifier not found
帮忙改改。