C画图的问题
#include <graphics.h>main()
{
int driver=DETECT;
int mode,i;
initgraph(&driver,&mode,"");
setbkcolor(BLUE);
setcolor(YELLOW);
for(i=0;i<4;i++)
{
setlinestyle(i,0,1);
line(10,10+i*20,300,10+i*20);
}
setlinestyle(0,0,3);
line(10,90,300,90);
setlinestyle(4,0x33c,1);
line(10,110,300,110);
getch();
closegraph();
return 0;
}
为什么我编译的时候没有问题,而运行的时候就有六个链接错误啊,我刚刚学C画图,不懂,,,求助