QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1323|回复: 4

<graphics.h>,gcc下有这?<grp.h>?

[复制链接]
发表于 2004-4-12 20:12:35 | 显示全部楼层 |阅读模式
我在/usr/lib/bcc/include/下找不到<graphics.h>但有个<grp.h>是不是一样的?
原文<ex20.c>如下:

      1 #include <graphics.h>
      2 #include <math.h>
      3 #define pi 4.1415926
      4
      5
      6 main(argc,argv)
      7 int argc;char *argv[];
      8 {
      9         int x,y,r1,rs,color;
     10         double a;
     11         int gdriver=DETECT,gmode;
     12         if(strcmp(argv[1],"pass")!=0)
     13         {
     14                 printf("password error!\n");
     15                 exit(0);
     16         }
     17         initgraph(&gdriver,&gmode,"..\\bgi");
     18         r1=atoi(argv[2]);
     19         rs=atoi(argv[3]);
     20         color=atoi(argv[4]);
     21         cleardevice();
     22         setbkcolor(color);
     23         setcolor(4);
     24         for(a=0;a<=2*pi;a+=pi/1
     25         {
     26                 x=r1*cos(a)+320;
     27                 y=r1*sin(a)+240;
     28                 circle(x,y,rs);
     29         }
     30         getch();
     31         closegraph();
     32 }
[muggle@localhost three]$ gcc -o ex20a ex20a.c -lm
ex20a.c:1:22: graphics.h: 没有那个文件或目录
ex20a.c: In function `main':
ex20a.c:11: `DETECT' undeclared (first use in this function)
ex20a.c:11: (Each undeclared identifier is reported only once
ex20a.c:11: for each function it appears in.)
[muggle@localhost three]$


这个怎么做啊
发表于 2004-4-12 20:37:14 | 显示全部楼层
老兄是否看了 grp.h 文件呢?
[code:1]

/*
*      POSIX Standard: 9.2.1 Group Database Access     <grp.h>
*/

[/code:1]

这个不是用来画图的!!
回复

使用道具 举报

 楼主| 发表于 2004-4-13 08:36:01 | 显示全部楼层
哦,那么那个<graphics.h>怎么办呢?
回复

使用道具 举报

发表于 2004-4-14 01:42:24 | 显示全部楼层
你所看的例子应该是Turbo C的程序,它带有graphics库,所以有graphics.h头文件;但Linux下不一样,你要进行图形编程的话应使用svgalib、ggilib或SDL这样的图形库。
回复

使用道具 举报

 楼主| 发表于 2004-4-14 08:19:12 | 显示全部楼层
哦,知道了,
谢谢你的回答!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-8 13:55 , Processed in 0.050305 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表