fork(1) download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int i, N=20;
  6. for (i = 0 ; i + N ; i--)
  7. {
  8. printf("*");
  9. }
  10. }
  11.  
Success #stdin #stdout 0s 5644KB
stdin
Standard input is empty
stdout
********************