Advertisements
Advertisements
Question
Find errors in the following snippet:
int p = 10;
switch (p)
{
case1: q = p * 2;
break;
case2: q = p + 2;
break;
case3: q = p − 2;
break;
}
Answer in Brief
Solution
- No execution takes place as the value of p = 10.
- The variable q is not declared.
shaalaa.com
Is there an error in this question or solution?