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 / vijoeyz
enum day = { jan = 1 ,feb=4, april, may}
- should have been -
enum day { jan = 1 ,feb=4, april, may};
However, the answer is 6, i.e., the option C.
Best,
Vijay Zanvar,
Home Page - http://geocities.com/vijoeyz/
| Is This Answer Correct ? | 74 Yes | 15 No |
Post New Answer View All Answers
how to count no of words,characters,lines in a paragraph.
What is the correct code to have following output in c using nested for loop?
What is difference between && and & in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Is fortran still used today?
What is hash table in c?
What does the function toupper() do?
all c language question
What are the preprocessor categories?
What is the use of getchar() function?
What are the data types present in c?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What is the use of void pointer and null pointer in c language?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Is c pass by value or reference?