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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?