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