当前位置: 代码迷 >> C语言 >> 帮忙看看怎么回事啊??
  详细解决方案

帮忙看看怎么回事啊??

热度:217   发布时间:2008-05-13 12:24:45.0
帮忙看看怎么回事啊??
自动进行硬件测试后进行图形初始化
     #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, "c:\\tc");
                               /* 根据测试结果初始化图形*/
          bar3d(10, 10, 130, 250, 20, 1);
          getch();
          closegraph();
          return 0;
      }
TC编译后显示 Unable to open include file 'GRAPHICS.h'  怎么回事啊??
----------------解决方案--------------------------------------------------------
那就是没有这个头文件了.
你去你的TC目录下,打开include文件夹看看,是不是没有这个文件或者是你的名字写错了.
----------------解决方案--------------------------------------------------------
  相关解决方案