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