尝试通过代码块运行图形程序时遇到问题。当我单击构建和运行按钮时,它只会打开控制台并崩溃。我尝试了许多其他图形程序,结果仍然相同。而且我也尝试调试它,它说分段错误。有关更多详细信息,请参见图片。
#include <graphics.h>
#include <stdio.h>
#include <conio.h>
int main(void) {
int gdriver = DETECT, gmode;
int x1 = 200, y1 = 200;
int x2 = 300, y2 = 300;
char driver[] = "";
initgraph(&gdriver, &gmode, driver);
line(x1, y1, x2, y2);
getch();
closegraph();
return 0;
}