fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int i;
  6.  
  7. for(i = 0; i < 10; i++) {
  8. printf("#\n");
  9. }
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
#
#
#
#
#
#
#
#
#
#