If the dialog between user and program is as follows, give the rest of the dialog. (Here, means the user presses the return key.) Explain the results. Enter a line of input abc
Assume the following code fragment is executed while embedded in a complete, correct program.
```
char c1, c2, c3, c4;
cout << "Enter a line of input \n";
cin.get(c1);
cin.get(c2);
cin.get(c3);
cin.get(c4);
cout << c1 << c2 << c3 << c4 << "END OF OUTPUT";
cout << endl;
```
The dialog is:
Enter a line of input
abc
END OF INPUT
The get member gets every character input, including the
You might also like to view...
When you select the ________ paste option, data in rows are pasted as columns
Fill in the blank(s) with the appropriate word(s).
A ____ is a library of commonly used applications and application programming interfaces (APIs) that can be reused by programmers in the larger applications that they write.
A. type library B. class library C. device library D. system library