suppose that x is an int variable, y is a double variable and ch is a char variable and the input is 15A 73.2
choose the values after the following statement executes:
cin >> x >> ch >> y;
a. x=15, ch='A', y=73.2
b. x=15, ch='A', y=73.0
c. x=15, ch='a', y=73.0
d. this statement results in an error because there is no space between 15 and A.
I think it is d because there should be a space between the two. if anyone could let me know i would appreciate it. thanks