What is an anonymous union and where to apply that ?
Answer Posted / priya
Anonymous unions are unions that are declared without a class-name or declarator-list.
union { member-list }
Such union declarations do not declare types
but they declare objects
They must also be declared as static if
declared in file scope. If declared in local scope
they must be static or automatic.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
in iso what are the common technological language?
What is main () in c language?
What is pointer to pointer in c?
What is indirection? How many levels of pointers can you have?
What is the difference between a function and a method in c?
How can I do graphics in c?
How can you draw circles in C?
What is sizeof int in c?
Explain what are header files and explain what are its uses in c programming?
Why do we need volatile in c?
How does #define work?
C language questions for civil engineering
Define macros.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What is the difference between array and linked list in c?