'How to calculate power in C

How do I calculate a power in C, and do you have to include anything? I have tried to include math.h, however it didn't work. What is de difference between a int and a double in this case.

c


Solution 1:[1]

To calculate a power in C, the best way is to use the function pow(). It takes two double arguments: the first is the number that will be raised by the power, and the second argument is the power amount itself.

So: double z = pow(double x, double y);

Then the result will be saved into the double z. You will have to use the math.h library in order to use this function.

Solution 2:[2]

#include <stdio.h>
int main()
{
  int base, exp;
  long long int value=1;
  printf("Enter base number and exponent respectively: ");
  scanf("%d%d", &base, &exp);
  while (exp!=0)
  {
      value*=base;  /* value = value*base; */
      --exp;
  }
  printf("Answer = %d", value);
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dada
Solution 2 99LittleBugsInTheCode