Graphics error: Device driver file not found (EGAVGA.BGI)

#include<graphics.h>#include<stdlib.h>#include<stdio.h>#include<conio.h>intmain(void)... #include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;

/* initialize graphics mode */
initgraph(&gdriver, &gmode, "");

/* read result of initialization */
errorcode = graphresult();

if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* return with error code */
}

/* draw a line */
line(0, 0, getmaxx(), getmaxy());

/* clean up */
getch();
closegraph();
return 0;
}
结果为什么是这个?
展开
 我来答
百度网友07d52fe
2008-12-30 · TA获得超过195个赞
知道小有建树答主
回答量:568
采纳率:0%
帮助的人:487万
展开全部
initgraph(&gdriver, &gmode, "");
如果是TC下编译,试一试将引号的东西写成TC的文件夹的绝对路径(检测方法是直接将文件拷贝到TC文件夹内编译……),看看可不可以……
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式