I need to concatenate two const chars like these:
const char *one = \"Hello \"; const char *two = \"World\";
How might I go about doing tha
It seems like you're using C++ with a C library and therefore you need to work with const char *.
const char *
I suggest wrapping those const char * into std::string:
std::string
const char *a = "hello "; const char *b = "world"; std::string c = a; std::string d = b; cout << c + d;