Advertisements
Advertisements
Question
Use switch case statement for the given program snippet:
if(a == 100)
c = a * 2;
if(a == 200)
c = a * 4;
if(a == 600)
c = a * 10;
Answer in Brief
Solution
switch(a)
{
case 100: c = a * 2;
break;
case 200: c = a * 4;
break;
case 600: c = a * 10;
}
shaalaa.com
Is there an error in this question or solution?