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