string Name; string FirstName; string LastName;
string City, State, Zip;
FisrtName = "Dan"; LastName = "Bennett"; City = "Edinboro"; State = "PA";
Name = FirstName + LastName;
Name = FirstName + ' ' + LastName;
cout << Name << endl;
#include <string>
Phrase = "Dan\'s quote was \"Hello\"";
#include#include const string GREETING = "Hello World";
cout << GREETING << endl;