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
difference between semaphores and mutex?
what is the difference between malloc() and calloc() function?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
How can I remove the trailing spaces from a string?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What is an expression?
What are the different file extensions involved when programming in C?
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What is the difference between ‘g’ and “g” in C?
Why is void main used?
What functions are used in dynamic memory allocation in c?