fork(3) download
  1. #include<iostream>
  2.  
  3. int main()
  4. {
  5. std::cout<<"First-";
  6. std::cout <<"-Second:";
  7. int i;
  8. std::cin>>i;
  9. std::cout<<"Third in a new line.";
  10.  
  11. }
Success #stdin #stdout 0s 3416KB
stdin
1
2
stdout
First--Second:Third in a new line.