fork download
  1. #include <cstdio>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. // associates standard input with input.txt
  8. freopen("input.txt", "r", stdin);
  9. // associates standard output with output.txt
  10. // (this will create a new file called output.txt if none exists)
  11. freopen("output.txt", "w", stdout);
  12.  
  13.  
  14.  
  15.  
  16.  
  17. string x;
  18. // reads the input.txt file and stores in string x
  19. getline(cin, x);
  20. // prints string x in output.txt file
  21. cout << x;
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty