Hello how i can convert a integer to const wchar_t or LPWSTR using C++ only.. not Qt pls.
Printable View
Hello how i can convert a integer to const wchar_t or LPWSTR using C++ only.. not Qt pls.
Do you mean "How do I make a printable string from an integer?" (E.g. 1234 -> "1234")?
If so, then swprintf() from the standard C library would work for that. wstringstream from the STD C++ library would work for a purely C++ approach.