What is an anonymous union and where to apply that ?
Answer Posted / swetcha
An anonymous union is a union without a name. It cannot be
followed by a declarator. An anonymous union is not a type;
it defines an unnamed object.
The member names of an anonymous union must be distinct
from other names within the scope in which the union is
declared. You can use member names directly in the union
scope without any additional member access syntax.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
please send me the code for multiplying sparse matrix using c
How to draw the flowchart for structure programs?
Write a program to swap two numbers without using the third variable?
while initialization of array why we use a[][2] why not a[2][]...?
What is data structure in c language?
What is null pointer constant?
How many bytes is a struct in c?
Differentiate between Macro and ordinary definition.
What is meant by operator precedence?
How would you rename a function in C?
Explain continue keyword in c
How can I sort a linked list?
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......
Who is the main contributor in designing the c language after dennis ritchie?
Is exit(status) truly equivalent to returning the same status from main?