C语言pow函数

时间:2021-07-11 02:05:50
pow(x,y);//其作用是计算x的y次方。x、y及函数值都是double型 

例:
我要计算2的5次方
源代码如下:
#include"stdio.h"
#include"math.h"
main()
{
long total;
int x = 2, y = 5;
total = pow(x,y); /*调用pow函数*/
printf("%ld",total);
getch();
}