[Error] 'initgraph' was not declared in this scope????
#include <stdio.h>#include <stdlib.h>
#incclude <graphics.h>
int main()
{
initgraph(640,480);
getchar();
closegraph();
return 0;
}
'initgraph' was not declared in this scope???? 此问题如何解决,请详细步骤,谢谢??我用的是Dev c++5.11编译器。
没有装graphics吧
2019 visual studio 安装到D盘了。 graphics.h: No such file or directory????这样的文件如何去找呀??? 下载安装了...... 本帖最后由 baige 于 2020-9-12 16:31 编辑
heroking146 发表于 2020-9-12 16:16
graphics.h: No such file or directory????这样的文件如何去找呀??? 下载安装了......
安装这个https://easyx.cn/down.aspx?id=10&no=0
然后使用vs去编译运行 #include<windows.h>
#include<graphics.h>
#include <stdio.h>
int main()
{
initgraph(640,480);
getchar();
closegraph();
return 0;
}
1、(.text+0x1e): undefined reference to `initgraph(int, int, int)'
2、(.text+0x28): undefined reference to `closegraph()'
3、 ld returned 1 exit status
又出现以上三个问题了,请求解。头文件grahpics.h 已经复制到相应文件夹了,用dev c++编译的 graphics.h 和graphics.lib ???? 第3句写错了,多了一个 c dev用不了啦,换别的编译器啊 推荐一个好用又免费下载注册的C++编译器。带有graphics.h头文件的?? heroking146 发表于 2020-9-12 19:26
推荐一个好用又免费下载注册的C++编译器。带有graphics.h头文件的??
easyx文档里说的只支持VC,所以只能乖乖用VS
https://visualstudio.microsoft.com/zh-hans/vs/older-downloads/
页:
[1]