heroking146 发表于 2020-9-12 15:27:29

[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编译器。

昨非 发表于 2020-9-12 15:31:33

没有装graphics吧

heroking146 发表于 2020-9-12 15:40:51

2019 visual studio 安装到D盘了。

heroking146 发表于 2020-9-12 16:16:15

        graphics.h: No such file or directory????这样的文件如何去找呀??? 下载安装了......

baige 发表于 2020-9-12 16:25:27

本帖最后由 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去编译运行

heroking146 发表于 2020-9-12 17:08:53

#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++编译的

heroking146 发表于 2020-9-12 17:14:29

graphics.h 和graphics.lib ????

风过无痕1989 发表于 2020-9-12 17:37:23

第3句写错了,多了一个 c

baige 发表于 2020-9-12 19:18:43

dev用不了啦,换别的编译器啊

heroking146 发表于 2020-9-12 19:26:04

推荐一个好用又免费下载注册的C++编译器。带有graphics.h头文件的??

livcui 发表于 2020-9-12 20:36:26

heroking146 发表于 2020-9-12 19:26
推荐一个好用又免费下载注册的C++编译器。带有graphics.h头文件的??

easyx文档里说的只支持VC,所以只能乖乖用VS
https://visualstudio.microsoft.com/zh-hans/vs/older-downloads/
页: [1]
查看完整版本: [Error] 'initgraph' was not declared in this scope????