如何在c99标准下将C中的x转换为pow y

发布于 2024-09-28 04:18:01 字数 160 浏览 6 评论 0原文

我有#include, 我尝试使用 pow(x, y) 和 powf(x, y)。 但似乎它们都不符合 c99 标准。 我使用命令 gcc -std=c99 test.c -o test 进行编译。 我可以使用什么功能?

I have #include<math.h>,
and I tried to use pow(x, y) and powf(x, y).
but it seems neither of them are under c99 standard.
and I use the command gcc -std=c99 test.c -o test to compile.
what function there exists I can use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深海少女心 2024-10-05 04:18:01

由于历史原因,数学库没有与标准库的其余部分捆绑在一起。您必须使用 gcc 的 -lm 选项手动将其添加到编译中。

gcc -std=c99 test.c -o test -lm

For histerical reasons, the math library is not bundled in with the rest of the Standard Library. You have to manually add it to the compilation with the -lm option to gcc.

gcc -std=c99 test.c -o test -lm
浮生未歇 2024-10-05 04:18:01

您与数学库链接了吗?

  gcc -std=c99 test.c -o test -lm

Did you link with the math lib?

  gcc -std=c99 test.c -o test -lm
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文