Answers for "concatenation function cstring c++"

C++
0

c++ concatenate strings

std::string s = "Hello";
std::string greet = s + " World"; //concatenation easy!
Posted by: Guest on December-20-2021

Browse Popular Code Answers by Language