QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 637|回复: 2

菜鸟问题

[复制链接]
发表于 2004-7-11 11:36:02 | 显示全部楼层 |阅读模式
我是刚学编程的,有个问题:
/*----sqrt.c------*/
#include<stdio.h>
#include<math.h>
main()
{
float a,b;
printf("Enter a value for a:\n");
scanf("%f",&a);
b=sqrt(a);
printf("The result is %f.\n",b);
}

[txw@TCL txw]$ cc -o sqrt sqrt.c
/tmp/cc8Z2pIW.o(.text+0x42): In function `main':
: undefined reference to `sqrt'
collect2: ld returned 1 exit status

难道gcc里没有sqrt()吗?????
发表于 2004-7-11 11:48:37 | 显示全部楼层
加个 -lm 数学库
回复

使用道具 举报

发表于 2004-7-14 22:26:23 | 显示全部楼层
难道gcc里没有sqrt()吗?????

[code:1]
#include<stdio.h>
#include<math.h>
int main()
{
float a,b;
printf("Enter a value for a:\n");
scanf("%f",&a);
b=sqrt(a);
printf("The result is %f.\n",b);
}
[/code:1]
我在gcc3.1上编译很正常,(main 前加了 int)。
gcc -Wall ??.cc -o ??
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-7 20:59 , Processed in 0.061251 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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