I need to concatenate two const chars like these:
const char *one = \"Hello \"; const char *two = \"World\";
How might I go about doing tha
const char* one = "one"; const char* two = "two"; char result[40]; sprintf(result, "%s%s", one, two);