suppose we use switch statement and we intilize years name
using enum statement like(jan,feb,mar,------dec) we take
integer value as an input .question is that the month which
we analyz is from 0 to 11 bt if i enter 12 than how he
again starts from begning and print jan
Answer Posted / vignesh1988i
enum is a special datatype , whatever we have intilized under enum only we can able to use in our program , hope so ur program contains only enum datatype from that u are giving value for each month through switch case......
so here wat i think is that after u give 11, ie 12th month since u are starting from 0 , if u give 12 inside enum , only 12 entries are there and already u have made use of it.... so again it will start from january only.......
thank u
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How do I determine whether a character is numeric, alphabetic, and so on?
Which is best linux os?
Write a program with dynamically allocation of variable.
What is a pointer value and address in c?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
Is it possible to have a function as a parameter in another function?
What is use of integral promotions in c?
How can I get back to the interactive keyboard if stdin is redirected?
What is the use of structure padding in c?
What are the valid places to have keyword “break”?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Why we use conio h in c?
What is volatile variable in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What are the advantages of external class?