400
int x, y, ijunk;
char z, cjunk;
If the user types in '810a8z10q' and presses return, which of the
following code fragments will result in x, y, and z, having the
values of 10, 8, and 'z', respectively?
A) cin >> ijunk >> cjunk >> y >> z >> x >> cjunk;
B) cin >> "810a" >> y >> z >> x >> 'q';
C) cin >> ijunk >> ijunk >> ijunk >> cjunk >> y >> z >> x >> cjunk;
D) cin >> y >> x >> cjunk >> ijunk >> z >> ijunk >> cjunk;
A