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 / gouse mohiddin
500
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is the difference between NULL and NUL?
What is difference between structure and union with example?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Under what circumstances does a name clash occur?
How can I discover how many arguments a function was actually called with?
Define and explain about ! Operator?
What are structure members?
Can a variable be both const and volatile?
What are the different types of objects used in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
What are data types in c language?
How can I find the modification date of a file?
What is use of bit field?
How can I determine whether a machines byte order is big-endian or little-endian?
Can an array be an Ivalue?