#include #include //for std::string #include using namespace std; //Double quotes around the characters of a string. int main() { string city {"Albany"}; //Can hold more than 1 character string state {"New York"}; //Can hold more than 1 word. cout << city << ", " << state << "\n"; return EXIT_SUCCESS; }