fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%d\t%d\n%d\n", 10, 20, 30);
  5. printf ("%d\t%d\n%d", 10,20,30);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
10	20
30
10	20
30