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