// This program illustrates how the standard input object cin handles the // input buffer from the keyboard. Try running the program with input // JCLp, and also ABCD. #include void main() { char c1,c2,c3,c4; cout << "Enter your initials: "; cin >> c1 >> c2 >> c3; cout << "Enter another character: "; cin >> c4; cout << "Your initials are " << c1 << c2 << c3 << ".\n"; cout << "The other character you entered is " << c4 << ".\n"; }