在C++ 的环境下为什么不能运行阿
#include <conio.h>#include <stdio.h>
int main(void)
{
int i;
clrscr();
for (i=0; i<9; i++)
{
textattr(i + ((i+1) << 4));
cprintf("This is a test\r\n");
}
return 0;
}
像这样的程序很多,都不能在C++6.0的环境下运行,是不是缺少什么东西啊。
Deleting intermediate files and output files for project '66 - Win32 Debug'.
--------------------Configuration: 66 - Win32 Debug--------------------
Compiling...
cyuyan.cpp
c:\1000\cyuyan.cpp(6) : error C2065: 'clrscr' : undeclared identifier
c:\1000\cyuyan.cpp(9) : error C2065: 'textattr' : undeclared identifier
执行 cl.exe 时出错.
66.exe - 1 error(s), 0 warning(s)
望高手指点