shmkv
630 / 349 / 43
Регистрация: 21.07.2015
Сообщений: 1,001
|
03.03.2016, 13:48
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
| #include <fstream>
#include <string>
int main()
{
std::wofstream fout("1.txt");
std::wstring str = L"blabla";
fout << str;
return 0;
} |
|
http://ideone.com/M6WFgN
1
|