Browse Source

Add functionality to Exponent Function

master
fdai7848 11 months ago
parent
commit
fdded408b1
  1. 10
      src/exponent.c

10
src/exponent.c

@ -1,5 +1,13 @@
#include "exponent.h" #include "exponent.h"
int expI(unsigned int e, int num){ int expI(unsigned int e, int num){
return 0;
int prod = 1;
if(e==0){
return 1;
}else{
for(int i = 1; i <=e; i++){
prod *= num;
}
return prod;
}
} }
Loading…
Cancel
Save