Page 1 of 1

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
by answerhappygod
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);