String concatenation works in C++ like it does in other languages:

std::string firstName = "Ben";
std::string lastName = "Brougher";

std::string fullName = firstName + " " + lastName;