pow function c code example
Example 1: pow() c
int base = 3;
int power = 5;
pow(double(base), double(power));
Example 2: c power operator
result = (int) pow((double) a,i);
Example 3: fuction power in c
#include <stdio.h>
#include <math.h>
int main()
{
double base, power, result;
printf("Enter the base number: ");
scanf("%lf", &base);
printf("Enter the power raised: ");
scanf("%lf",&power);
result = pow(base,power);
printf("%.1lf^%.1lf = %.2lf", base, power, result);
return 0;
}
Example 4: power func in c
The function pow() is used to calculate the power raised
to the base value. It takes two arguments. It returns the
power raised to the base value. It is declared in
“math.h” header file.
Example 5: pow() c
[Mathematics] xy = pow(x, y) [In programming]