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
Explain how do you search data in a data file using random access method?
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(“%d” ,a[i]); }
What is the best organizational structure?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Write a program in c to print * * * * * *******
1 What is a Data Structure?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
What is methods in c?
Can you assign a different address to an array tag?
when to use : in c program?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)