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
If you are using MFC, you can use a CString
CString nameAge = ""; nameAge.Format("%s%d", "John", 21);
Managed C++ also has a string formatter.