SyntaxFix
Write A Post
Hire A Developer
Questions
Use std::stringstream to convert integers into strings and its special manipulators to set the base. For example like that:
std::stringstream
std::stringstream sstream; sstream << std::hex << my_integer; std::string result = sstream.str();