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 "Hungarian Notation"?
What is the purpose of sprintf() function?
Explain Doubly Linked Lists?
Explain the difference between the local variable and global variable in c?
What is a rvalue?
Why can't we initialise member variable of a strucutre
What does char * * argv mean in c?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What is Memory leakage ?
What is a ternary operator in c?
what is the use of a array in c
How to access or modify the const variable in c ?
16 Answers HCL, HP,