conio.h调用不了函数
#include<stdio.h>#include<conio.h>
void main()
{
char a[]="dfasf";
textbackground(4);
textcolor(4);
cputs(a);
}
系统说
Compiling...
源1.cpp
D:\C++\自学1\源1.cpp(8) : error C2065: 'textbackground' : undeclared identifier
D:\C++\自学1\源1.cpp(9) : error C2065: 'textcolor' : undeclared identifier
执行 cl.exe 时出错.
源1.obj - 1 error(s), 0 warning(s) 可能是因为文件后缀不是.c
页:
[1]