当前位置: 代码迷 >> C语言 >> 程序出错,请大家帮助!
  详细解决方案

程序出错,请大家帮助!

热度:447   发布时间:2008-06-12 19:24:20.0
程序出错,请大家帮助!
#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  选择“关闭”终止应用程序,请高手指点下。


}
搜索更多相关的解决方案: include  应用程序  测试结果  return  

----------------解决方案--------------------------------------------------------
  相关解决方案