Multiple Choice
Suppose that alpha is an int variable and ch is a char variable.The input is: 17 A
What are the values after the following statements execute?
Cin >> alpha;
Cin >> ch;
A) alpha = 17, ch = ' '
B) alpha = 1, ch = 7
C) alpha = 17, ch = 'A'
D) alpha = 17, ch = 'a'
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q24: In an output statement, each occurrence of
Q25: In C++, the dot is an operator
Q26: Suppose that x is an int variable
Q27: Suppose that ch1 and ch2 are char
Q28: Manipulators without parameters are part of the
Q30: _ is a parameterized stream manipulator.<br>A) endl<br>B)
Q31: It is a good idea to redefine
Q32: Suppose that ch1, ch2, and ch3 are
Q33: Suppose that x and y are int
Q34: Consider the following program segment. Which of