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