Which statement uses buffer manipulators to immediately display the following on the screen?
Good morning
a. cout << "Good morning";
b. cout <<"Good" << endl << "morning";
c. cout << "Good\nmorning\n";
d. cout << "Good" << endl << "morning" << flush;