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