explain about storage of union elements.
Answers were Sorted based on User's Feedback
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 |
code for copying two strings with out strcpy() function.
What are volatile variables?
What is merge sort in c?
What is bash c?
what is the little endian and big endian?
Tell me when would you use a pointer to a function?
how to find the binary of a number?
Write a program to print fibonacci series without using recursion?
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
What is meant by recursion?
main() { printf(5+"Vidyarthi Computers"); }
difference between c and c++?