fork download
  1. #include <stdio.h>
  2. int expo(int x,int y){
  3. if(y<2){
  4. return x;
  5. }else{
  6. return x*expo(x,y-1);
  7. }
  8. }
  9.  
  10. int main(void) {
  11. printf("%d",expo(2,3));
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
8