Guest User

Untitled

a guest
Jul 19th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. //Text to a file.
  2.  
  3. #include <stdio.h>
  4. #include <iostream>
  5. #include <fstream>
  6. using namespace std;
  7.  
  8. int main () {
  9. ofstream file;
  10. file.open ("codebind.txt");
  11. file << β€œText to a file.\n\n”;
  12. file.close();
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment