Advertisement
SteelK

Untitled

May 29th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <fstream>
  4.  
  5. //using namespace std;
  6.  
  7. int main()
  8. {
  9.     setlocale(0, "");
  10.     std::ofstream test ("D:/test.txt", ios::app);
  11.     //test.open("D:/test.txt");
  12.     test << "132 ABC abc АБВ абв ,.'];" << std::endl;
  13.     test.close();
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement