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 ?    73 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a program flowchart and how does it help in writing a program?

647


What is meant by recursion?

617


What does %c mean in c?

637


Write a function that will take in a phone number and output all possible alphabetical combinations

589


What does malloc () calloc () realloc () free () do?

546






The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

663


hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

1623


What is array of pointers to string?

556


What is struct node in c?

608


Are enumerations really portable?

585


Does * p ++ increment p or what it points to?

599


what will be maximum number of comparisons when number of elements are given?

1398


what is the difference between class and unio?

1850


What does char * * argv mean in c?

613


Explain Function Pointer?

675