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

阅读 5k
1 个回答

应该是你的配置里没有加入 -lgraphic。
具体配置:链接描述

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题