C++ string Concatenating strings
#include <iostream> #include <string> using std::string; int main() {/* ww w . j a v a 2 s . c om*/ string first; // Stores the first name string second; // Stores the second name std::cout << "Enter your first name: "; std::cin >> first; // Read first name std::cout << "Enter your second name: "; std::cin >> second; // Read second name string sentence {"Your full name is "}; // Create basic sentence sentence += first + " " + second + "."; // Augment with names std::cout << sentence << std::endl; // Output the sentence std::cout << "The string contains " // Output its length << sentence.length() << " characters." << std::endl; }