devcpp使用ege的时候,出现cannot find -lgraphics问题
在devcpp里面使用ege的时候
#include <iostream>
#include <graphics.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
initgraph(640,480);
circle(200,200,100);
getch();
closegraph();
return 0;
}
最后报错:cannot find -lgraphic
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该是你的配置里没有加入 -lgraphic。
具体配置:链接描述