How can I convert from unsigned short to string using C++? I have tow unsigned short variables:
unsigned short major = 8, minor = 1;
I want to join them for on string, looks like:
std::string version = major + "." + minor;
how can I do it? will aprrechiate a small sample code.
Thanks