#include int main() { const int MAXCHARS = 81; char message[MAXCHARS]; // enough storage for a complete line cout << "Enter a string:\n"; cin.getline(message,MAXCHARS); cout << "The string just entered is:\n"; cout << message << endl; return 0; }