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