enum day = { jan = 1 ,feb=4, april, may}
what is the value of may?
a)4 b)5 c)6 d)11
e)none of the above
Answer Posted / jayasree
ans is 6
that is option c
| Is This Answer Correct ? | 24 Yes | 4 No |
Post New Answer View All Answers
What are the __date__ and __time__ preprocessor commands?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is the difference between #include
Write a program to generate random numbers in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is identifier in c?
Explain what header files do I need in order to define the standard library functions I use?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is "Hungarian Notation"?
How many types of operator or there in c?
What is identifiers in c with examples?
What are the different types of linkage exist in c?
What is a pointer and how it is initialized?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none