fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. int i;
  5. for (i=1;i<=10;i++)
  6. {
  7. printf("%d /n", i);
  8. }
  9.  
  10. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
1 /n2 /n3 /n4 /n5 /n6 /n7 /n8 /n9 /n10 /n