I thought this would be really simple but it\'s presenting some difficulties. If I have
std::string name = \"John\"; int age = 21;
How do I
It seems to me that the simplest answer is to use the sprintf function:
sprintf
sprintf(outString,"%s%d",name,age);