If you code them by hand, then yes. If you a library, then it is the same.
It is certainly true that the C++ standard library provides more functionality out of the box.
It is certainly true that the C++ standard library provides more functionality out of the box.
string a = string("test"); string b = string(" this"); string n = string_concat(a, b); ...