码迷,mamicode.com
首页 > 其他好文 > 详细

C 调用数学函数pow时遇到 undefined reference [已解决]

时间:2015-03-04 18:37:24      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1、问题描述
编译如下代码

#include <stdio.h>
#include <math.h>

int main()
{
    float x = 2, y = 10;
    float p = 0;

    p = pow(x, y);
    printf("%f\n", p);
    
    return 0;
}

 

出现如下问题
undefined reference to `pow‘

2、解决方法
1)man pow

技术分享

2)在man手册中提到 调用 pow要做两件事,
第一,包含头文件,第二编译时加  -lm
 
3)将数学库链接进来

$ gcc ss.c -o ss -g -Wall -lm

C 调用数学函数pow时遇到 undefined reference [已解决]

标签:

原文地址:http://www.cnblogs.com/aqing1987/p/4313868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!