what is the output of the program and explain why??
#include<stdio.h>
void main ( )
{
int k=4,j=0:
switch (k)
{
case 3;
j=300;
case 4:
j=400:
case 5:
j=500;
}
printf (ā%d\nā,j);
}
Answer Posted / ramprabha
500
| Is This Answer Correct ? | 15 Yes | 6 No |
Post New Answer View All Answers
Linked lists -- can you tell me how to check whether a linked list is circular?
What is the function of volatile in c language?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What header files do I need in order to define the standard library functions I use?
What are local static variables?
What is scope of variable in c?
What does emoji p mean?
What is difference between class and structure?
What is dynamic dispatch in c++?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is the use of a static variable in c?
Why do we need a structure?
What are the advantages of using Unions?
Why is c so powerful?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?