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 does #pragma once mean?
Do pointers store the address of value or the actual value of a variable?
What are enums in c?
Can static variables be declared in a header file?
Which of these functions is safer to use : fgets(), gets()? Why?
What is an arrays?
What is quick sort in c?
What is a pointer on a pointer in c programming language?
What are header files and what are its uses in C programming?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is meant by keywords in c?
What is meant by realloc()?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What are volatile variables in c?
What is #pragma statements?