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
a program that can input number of records and can view it again the record
Explain what is the difference between a string and an array?
main() { int i=400,j=300; printf("%d..%d"); }
What is string function in c?
What is optimization in c?
What is pointer and structure in c?
What does sizeof function do?
Why we write conio h in c?
What is the difference between printf and scanf in c?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
c pgm count no of lines , blanks, tabs in a para(File concept)
write a program without using main function?