You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
219 B

  1. #include "exponentials.h"
  2. #include <stdlib.h>
  3. #include <math.h>
  4. double* exponentials_double(int base, int exponent) {
  5. double* result = malloc(sizeof(double));
  6. *result = pow(base, exponent);
  7. return result;
  8. }