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 / gollapally
400
500
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
When the macros gets expanded?
Is c is a high level language?
What is malloc() function?
how to build a exercise findig min number of e heap with list imlemented?
what does static variable mean?
what is the syallabus of computer science students in group- 1?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
Write a program to print fibonacci series without using recursion?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
How does sizeof know array size?
What are identifiers and keywords in c?
What is the correct declaration of main?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How do I send escape sequences to control a terminal or other device?
What the advantages of using Unions?