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
is it possible to create your own header files?
Why is it important to memset a variable, immediately after allocating memory to it ?
what is the height of tree if leaf node is at level 3. please explain
What are the advantages and disadvantages of c language?
Write a program to print fibonacci series without using recursion?
How to create struct variables?
What does return 1 means in c?
What is malloc() function?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(ā-ā); Return 0;
How can you increase the size of a dynamically allocated array?
What is #include stdlib h?
What is call by reference in functions?
How many header files are in c?
What is an identifier?
How can I implement sets or arrays of bits?