i = 25;switch (i) {case 25: printf("The value is 25
");case 30: printf("The value is 30
"); When the above statements are executed the output will be :
a) The value is 25
b) The value is 30
c) The value is 25 The value is 30
d) none
No Answer is Posted For this Question
Be the First to Post Answer
What are the concepts introduced in OOPs?
Why c is called top down?
Can the sizeof operator be used to tell the size of an array passed to a function?
What does %d do in c?
give one ip, find out which contry
What is exit() function?
Explain why c is faster than c++?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
Write a programme to find even numbers without using any conditional statement?
3 Answers ADD Software, Infosys,
question-how to run a c programme.
What is volatile variable how do you declare it?
what are the various memory handling mechanisms in C ?