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