What value is assigned using the same input for each


Suppose x,and y are int variables and ch is a char variable. Assume the following input data: 
13 28 D
14 E 98
A B 56
what value is assigned to x,y, and ch after each of the following statements executes?(using the same input for each statement)

a.)cin >> x >> y;
cin.ignore(50, '/n');
cin >> ch;

b.) cin >> x;
cin.ignore(50, '/n');
cin >> y;
cin.ignore(50, '/n');
cin.get(ch);

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: What value is assigned using the same input for each
Reference No:- TGS0137578

Expected delivery within 24 Hours