fork download
  1. #include <stdio.h>
  2.  
  3. int potencia(int b, int n){
  4.  
  5. if(n == 0){
  6. return 1;
  7. }
  8.  
  9. return b * potencia(b, n-1);
  10. }
  11.  
  12. int main(){
  13. int b = 2;
  14. int expo = 3;
  15.  
  16. int pot = potencia(b, expo);
  17. printf("%d\n", pot);
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 4496KB
stdin
Standard input is empty
stdout
8