[求助]在VC++6.0中怎么不运行这个很简单的程序
在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语言专区看见的个题目,不知道为什么 希望斑竹门和兄弟门指点```
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)
这是运行结果 是不是缺少什么头文件呢?