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
Explain spaghetti programming?
What is extern keyword in c?
What is #ifdef ? What is its application?
Is there sort function in c?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Write a program with dynamically allocation of variable.
How can I change the size of the dynamically allocated array?
Explain what is the best way to comment out a section of code that contains comments?
Tell us two differences between new () and malloc ()?
what is the diffrenet bettwen HTTP and internet protocol
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is volatile keyword in c?
Without Computer networks, Computers will be half the use. Comment.
What is the right type to use for boolean values in c? Is there a standard type?
Write a program in c to replace any vowel in a string with z?