main()
{
int l=6;
switch(l)
{
default:l=l+2;
case 4:l=4;
case 5:l++;
break;
}
printf("%d",l);
}
Answer Posted / sudeshna
5
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is difference between far and near pointers?
What is nested structure?
write a c program in such a way that if we enter the today date the output should be next day's date.
What is the best organizational structure?
What is indirection in c?
Is c procedural or object oriented?
What is fflush() function?
What does 3 mean in texting?
Why is it usually a bad idea to use gets()? Suggest a workaround.
C program to find all possible outcomes of a dice?
What is a void * in c?
What are the different types of errors?
What does sizeof function do?
Are there any problems with performing mathematical operations on different variable types?
Differentiate between declaring a variable and defining a variable?