Dev C ++中的Graphics.h错误

时间:2015-12-22 09:11:29

标签: c graphics

我正在尝试使用graphics.h头文件并编写一个简单的程序来测试它是否有效。这是我写的程序

#include <graphics.h>

int main( )
{
    initwindow(400, 300, "First Sample");
    circle(100, 50, 40);
    while (!kbhit( ))
    {
        delay(200);
    }
    return 0;
}

但是当我尝试编译并运行此程序时,我收到如下错误,

(.text+0x3d): undefined reference to `initwindow'
(.text+0x52): undefined reference to `circle'
(.text+0x5e): undefined reference to `delay'

我该怎么做才能解决这个问题?请帮忙。

2 个答案:

答案 0 :(得分:0)

如果你想在linux中使用graphics.h,那么这个link对你有用。

答案 1 :(得分:0)

右键单击您的项目,然后转到项目选项,转到编译器并选择32位版本,它将起作用。