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 structure pointer?
Differentiate between functions getch() and getche().
Write a program to implement queue.
What are the data types present in c?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What oops means?
What is the difference between typedef and #define?
What is an array in c?
I came across some code that puts a (void) cast before each call to printf. Why?
Explain what is the difference between text files and binary files?
What is the difference between if else and switchstatement
How we can insert comments in a c program?
Apart from dennis ritchie who the other person who contributed in design of c language.
What is #include stdlib h?
How to compare array with pointer in c?