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 / sathish
400
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
Explain how do you list files in a directory?
What is the difference between text and binary i/o?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What are the advantages and disadvantages of pointers?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is the difference between array_name and &array_name?
Explain the difference between null pointer and void pointer.
Is main a keyword in c?
c program for searching a student details among 10 student details
What is volatile, register definition in C
Explain what is the concatenation operator?
using only #include
What are the 5 elements of structure?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is dynamic dispatch in c++?