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