fork download
  1. int main()
  2. {
  3. static int i=5;
  4. if(--i){
  5. main();
  6. printf("%d ",i);
  7. }
  8. }
  9.  
Success #stdin #stdout 0s 4564KB
stdin
Standard input is empty
stdout
0 0 0 0