How to use pow : Power « Math « C / ANSI-C






How to use pow

How to use pow
#include <math.h>
#include <stdio.h>

int main(void)
{
  double x = 10.0, y = 0.0;

  do {
    printf("%f\n", pow(x, y));
    y++;
  } while(y<11.0);

  return 0;
}


           
       








Related examples in the same category

1.Calculate numeric power: how to use powCalculate numeric power: how to use pow
2.Our own power function