since 2011-11-08
sprintf っぽいことをして、最後に C 言語の wchar ポインタがほしい場合の処理:
#include <sstream> using namespace std; ... { wstringstream s; s << L"value " << val; OutputDebugString(s.str().c_str()); }