string firstName = "Anne",
// declare & initialize two string objects
lastName = "Duncan";
string fullName =
// declare a string object "fullName";
firstName + " " + lastName;
// assign it the result of concatenating
// "firstName", space and "lastName"
cout << fullName;
// display "Anne Duncan"