Advertisements
Advertisements
प्रश्न
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;
}
थोडक्यात उत्तर
उत्तर
- No execution takes place as the value of p = 10.
- The variable q is not declared.
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?