小仲达 发表于 2020-4-9 22:31:28

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)

剑御玫瑰 发表于 2020-5-6 09:51:29

可能是因为文件后缀不是.c
页: [1]
查看完整版本: conio.h调用不了函数