//DISPLAY 8.4 Program Using the Class string //Demonstrates the standard class string. #include #include using namespace std; int main( ) { string phrase; string adjective("fried"), noun("ants"); string wish = "Bon appetit!"; phrase = "I love " + adjective + " " + noun + "!"; cout << phrase << endl << wish << endl; return 0; }