Guest User

Untitled

a guest
Jun 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. using namespace std;
  2. string line;
  3.  
  4. fstream fich("COM5:", ios::out | ios::in);
  5. fich << "Hola mundo" << flush;
  6.  
  7. while (getline(fich, line))
  8. {
  9. cout << line << 'n';
  10. }
  11. fich.close();
Add Comment
Please, Sign In to add comment