哪个库有电源功能?

时间:2015-09-08 19:40:30

标签: c function

我是初学c-programmer ...我想在我的程序中使用power函数但是,我找不到任何具有电源功能的库? 请介绍一个具有此功能的库

2 个答案:

答案 0 :(得分:5)

#include <math.h>
double pow(double x, double y); // where x is the base, y is the exp

答案 1 :(得分:4)

#include <math.h>

double pow(double x, double y);
float powf(float x, float y);
long double powl(long double x, long double y);