程序出错,请大家帮助!
#include "stdio.h"#include"graphics.h"
int main()
{
int gdriver, gmode;
detectgraph(&gdriver, &gmode); /*自动测试硬件*/
printf("the graphics driver is %d, mode is %d\n",
gdriver,gmode); /*输出测试结果*/
getch();
initgraph(&gdriver, &gmode, "G:\tc\tc\ATT.BGI");
/* 根据测试结果初始化图形*/
bar3d(10, 10, 130, 250, 20, 1);
getch();
closegraph();
return 0;
为什么我的程序执行的时候总是屏幕变黑了,然后就提示 NTVDM CPU遇到无效指令。CS:64d3 IP:fe 56 ff 88 fe 选择“关闭”终止应用程序,请高手指点下。
}