SyntaxFix
Write A Post
Hire A Developer
Questions
Since it's C++ why not to use std::string instead of char*? Concatenation will be trivial:
std::string
char*
std::string str = "abc"; str += "another";