在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
应该是你的配置里没有加入 -lgraphic。
具体配置:链接描述