Create a template specialization to test for string and pointers-to-char string s = plus("he", "llo"); const char* sl =
Posted: Wed Apr 27, 2022 3:47 pm
Create a template specialization to test for string and
pointers-to-char
string s = plus("he", "llo");
const char* sl = "aaa";
const char* s2 = "bbb";
char* s3 = plus(sl, s2);
pointers-to-char
string s = plus("he", "llo");
const char* sl = "aaa";
const char* s2 = "bbb";
char* s3 = plus(sl, s2);