TC图形编程驱动文件怎么装入程序
运行TC 图形程序提示如下错误:BGI ERROR :Graphics not initialized(use 'initgraph) 程序在调用initgraph()函数进行图形初始化时,没有将相应的动文件(*bgi)装入程序执行
那么请问,怎么装入执行呢?
奇怪了,,你的代码我复制了,可以运行,为什么我的就不行呢?你给看看吧:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
/* 此处添加你自己的代码 */
int graphdriver=DETECT;
int graphmode,x,y;
detectgraph(&graphdriver,&graphmode);
initgraph(&graphdriver,&graphmode,"");
cleardevice();
for(y=20;y<200;y+=20)
{
for(x=20;x<=400;x+=12)
{
setcolor(GREEN);
line(x,y,x+4,y);
putpixel(x+8,y,YELLOW);
}
}
getch();
closegraph();
return 0;
}