Answers for "c++ std string to wstring"

C++
0

string to wstring conversion c++

string str = DATA_DIR;
std::wstring temp(L"%s",str);
Posted by: Guest on February-24-2021

Browse Popular Code Answers by Language