I need to concatenate two const chars like these:
const char *one = \"Hello \"; const char *two = \"World\";
How might I go about doing tha
If you are using C++, why don't you use std::string instead of C-style strings?
std::string
std::string one="Hello"; std::string two="World"; std::string three= one+two;
If you need to pass this string to a C-function, simply pass three.c_str()
three.c_str()