我使用 graphics.h 是为了从 C++ 中的一些图形开始,但是当我运行代码时程序崩溃了。我使用 CodeBlocks 作为编译器,使用 Windows 8.1 作为操作系统。我应该怎么做才能使它起作用?这是代码:
#include <graphics.h>
int main()
{
int gd = DETECT;
int gm;
initgraph(&gd, &gm, "C:\\TC\\BGI");
arc(200, 200, 0, 130, 50);
getch();
closegraph();
}