What is the output?
#includestdio.h
int main()
{
int i;
for(i=0;i20;i++)
{
switch(i)
{
case 0 : i+=5;
case 1 : i+=2;
case 5 : i+= 5;
default : i+= 4;
}
printed("%d",i);
}
}


Posted on by