main()
{
int l=6;
switch(l)
{
default:l=l+2;
case 4:l=4;
case 5:l++;
break;
}
printf("%d",l);
}



main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("..

Answer / sudeshna

5

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

Why is void main used?

0 Answers  


C language questions for civil engineering

0 Answers   Tech Mahindra,


Write a program to generate prime factors of a given integer?

9 Answers   Microsoft,


Why is python slower than c?

0 Answers  


What is far pointer in c?

0 Answers  






write a program to convert a expression in polish notation (postfix) to inline (normal)

0 Answers   Siemens,


What is the purpose of realloc()?

0 Answers  


What is the c language function prototype?

0 Answers  


If fflush wont work, what can I use to flush input?

0 Answers  


what is reason of your company position's in india no. 1.

0 Answers   Accenture, TCS,


find second largest element in array w/o using sorting techniques? use onle one for loop.

15 Answers   BitWise, Zycus Infotech,


Explain what is the difference between functions getch() and getche()?

0 Answers  


Categories