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
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
write a program in C to swap two variables
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
What are 'near' and 'far' pointers?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
What are the c keywords?
how to write optimum code to divide a 50 digit number with a 25 digit number??
what is the difference between 123 and 0123 in c?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?