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
Why is c not oop?
How can I implement sets or arrays of bits?
When should a far pointer be used?
Why do we use int main instead of void main in c?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
how many errors in c explain deply
How can a program be made to print the name of a source file where an error occurs?
What is function in c with example?
Is c high or low level?
How can I sort a linked list?
Explain high-order bytes.
What does sizeof int return?
What are global variables and explain how do you declare them?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
If you know then define #pragma?