Chapter 3: Problem 2
Suppose num1 and num2 are int variables and symbol is a char variable. Consider the following input: 47 18 * 28 $ What value (if any) is assigned to num1, num2, and symbol after each of the following statements executes? (Use the same input for each statement.) a. cin >> num1 >> symbol >> num2; b. cin >> symbol >> num1 >> num2; c. cin >> num1; cin.get (symbol); cin >> num2; d. cin >> num1 >> num2; cin.get (symbol); e. cin.get (symbol); cin >> num1 >> num2;
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.