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 is spark map function?
What is the difference b/w main() in C language and main() in C++.
write a program to gat the digt sum of a number (et. 15= >1+5=6)
Write a factorial program using C.
What is the difference between arrays and pointers?
What is use of integral promotions in c?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
What are external variables in c?
If the size of int data type is two bytes, what is the range of signed int data type?
WHAT IS C?
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
What is atoi and atof in c?