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
How can I avoid the abort, retry, fail messages?
What is a null pointer in c?
What is a structure member in c?
In C programming, what command or code can be used to determine if a number of odd or even?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Write a program to show the change in position of a cursor using c
Explain the difference between null pointer and void pointer.
How are structure passing and returning implemented?
When is a void pointer used?
Explain the meaning of keyword 'extern' in a function declaration.
Can you please explain the difference between malloc() and calloc() function?
What is a structural principle?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Why c is called top down?