Predict the output of the following code
#includestdio.h
void main()
{
int a=8,b=6,c;
c=a-b;
switch(c)
{
case 1 || 2:
printf("Pavan");
case 2 || 1:
printf("Varahad");
case 2:
printf("V");
}
}


Posted on by