Guest User

Untitled

a guest
Feb 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #include <fstream>
  2. int main()
  3. {
  4. ofstream myfile;
  5. myfile.open ("Note.txt");
  6. myfile<<"ABC";
  7. myfile.close();
  8. }
Add Comment
Please, Sign In to add comment