difference between structure and union.
Answers were Sorted based on User's Feedback
Regarding the struct, each item in the struct is allocated
in a separated memory. And the size of a struct object is
total size of all its items.
But with the union, all its items are in the same memory.
And the size of an union object is size of its item which
has largest size.
| Is This Answer Correct ? | 24 Yes | 0 No |
Answer / siva sankari
struct employee
{
int a[20];// for tis size 20 was allocated in memory
char text;// for tis only 1byte of memory space is allocated
}
so totally 21 in size was allocated in memory space
union employee
{
int a[20];// for tis size 20 was allocated in memory
char text;// for tis only 1byte of memory space is allocated
}
but in union it takes only the maximum memory space so for each 20space totally 40 size was allocated in memory space
| Is This Answer Correct ? | 7 Yes | 12 No |
how to find no of instances of an object in .NET?
What is object in oop with example?
Explain the concept of abstracion and encapsulation with one example. What is the difference between them?
program for insertion ,deletion,sorting in double link list
When is it necessary to use member-wise initialization list in C++?
what is a ststic variable and stiticfunction briefly explain with exmple and in which case we use
what are the ways in which a constructors can be called?
What are functions in oop?
who is the father of OPPS
Does c++ support multilevel and multiple inheritance?
how to get the oracle certification? send me the answer
I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?