explain about storage of union elements.

Answers were Sorted based on User's Feedback



explain about storage of union elements...

Answer / saranya

union elements share common memory space

Is This Answer Correct ?    18 Yes 0 No

explain about storage of union elements...

Answer / anandi

Union elements can share the common memory spaces.

For eg.

union stu
{
int rno;
int mark;
float total;
};

In this pg, the compiler allocates 4 bytes to store the
union members. Bcoz, in this pg, the float data type only
requires the large memory size, ie, 4 bytes. And the
remaining members can share this 4 bytes. So if u want to
store rno, it will allocate the first 2 bytes.
And also we can store only one value at a time to the
memory.

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More C Interview Questions

code for copying two strings with out strcpy() function.

6 Answers  


What are volatile variables?

1 Answers   Mind Tree,


What is merge sort in c?

0 Answers  


What is bash c?

0 Answers  


what is the little endian and big endian?

1 Answers  


Tell me when would you use a pointer to a function?

0 Answers  


how to find the binary of a number?

10 Answers   Infosys,


Write a program to print fibonacci series without using recursion?

0 Answers  


what is ur strangth & weekness

0 Answers   Cognizant, LG Soft, NetEnrich,


What is meant by recursion?

0 Answers   ADP,


main() { printf(5+"Vidyarthi Computers"); }

6 Answers  


difference between c and c++?

2 Answers  


Categories