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
What is size of union in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
How can I discover how many arguments a function was actually called with?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How is a pointer variable declared?
Do pointers store the address of value or the actual value of a variable?
can anyone please tell about the nested interrupts?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How can I find out how much free space is available on disk?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is file in c preprocessor?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Explain two-dimensional array.
When is a void pointer used?