QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 645|回复: 3

有没有<MATH.H>?

[复制链接]
发表于 2004-4-6 02:27:25 | 显示全部楼层 |阅读模式
我的程序说找不到exp。
[code:1]
[root@astonish root]# cat test.c
#include <math.h>
int main(void)
{
        double answer;
        answer = exp (10);
        printf("e^10 =%f\n", answer);
}
[root@astonish root]# gcc -o test test.c
/tmp/cc4WXZvp.o(.text+0x1b): In function `main':
: undefined reference to `exp'
collect2: ld returned 1 exit status
[root@astonish root]#
[/code:1]
发表于 2004-4-6 09:05:10 | 显示全部楼层
gcc -o test test.c -lm
回复

使用道具 举报

 楼主| 发表于 2004-4-6 11:30:48 | 显示全部楼层
谢谢,还有就是其它的头文件是不是也有没有的
回复

使用道具 举报

发表于 2004-4-6 17:33:51 | 显示全部楼层
[quote:9a20e7ed99="zhangyichi"]谢谢,还有就是其它的头文件是不是也有没有的[/quote]

yes

for example:
<pthread.h>
gcc -o test test.c -lpthread
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-8 17:13 , Processed in 0.179242 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

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