
Converting an Integer to a C++ String
Boost libraries provide a better way to convert numbers into strings or vice versa. You must install the Boost libraries on your computer to make this work (click here for more info on Boost libraries ). #include <boost/lexical_cast.hpp>// Number to Unicode stringstd::wstring wcs = boost::lexical_cast(1234);// Number to char stringstd::string s