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