我是初学c-programmer ...我想在我的程序中使用power函数但是,我找不到任何具有电源功能的库? 请介绍一个具有此功能的库
答案 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);