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
Can I initialize unions?
What are void pointers in c?
What is a global variable in c?
What is the purpose of the statement: strcat (S2, S1)?
What does the c in ctime mean?
What is the heap in c?
What do header files do?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What are the __date__ and __time__ preprocessor commands?
What is pointer to pointer in c?
What is %s and %d in c?
What is extern storage class in c?
What is queue in c?
Why is %d used in c?
Explain what is the benefit of using const for declaring constants?