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
0
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
How do you list files in a directory?
What is this infamous null pointer, anyway?
Why is c so important?
What is function definition in c?
What are valid operations on pointers?
What is structure pointer in c?
Explain what are global variables and explain how do you declare them?
What is the use of sizeof () in c?
The file stdio.h, what does it contain?
What is the advantage of an array over individual variables?
using for loop sum 2 number of any 4 digit number in c language
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
How to create struct variables?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What are predefined functions in c?