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
#include
Is c programming hard?
what is use of malloc and calloc?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Write the Program to reverse a string using pointers.
How can I automatically locate a programs configuration files in the same directory as the executable?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Is c++ based on c?
What are the types of data files?
Differentiate between a for loop and a while loop? What are it uses?
Are negative numbers true in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What do you mean by recursion in c?
What are the different categories of functions in c?