Short Answer
The following code segment should include the __________ statement at the end of each case to cause proper exit of control.
switch (operator) {
case '+':
result = x + y;
add_op++;
/* missing statement */
case '/':
result = x / y;
divide_op++;
/* missing statement */
default: ;
}
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q7: A C++ program is _ into a
Q8: If num = 1 when the condition
Q9: The line int main () identifies the
Q10: In operations involving mixed-type operands, the numeric
Q11: You can use either students[0] or _
Q13: To delete a dynamically allocated array named
Q14: An output _ is a sequence of
Q15: C++ uses type _ to represent logical
Q16: In C++, function parameters are either call-by-value
Q17: The# include directive has one of two