what is the difference between structure and union?
Answers were Sorted based on User's Feedback
Answer / karthikeyan
union is unified memory where structure is non unified memory.
all members of structure occupy consecutive chunks of
memory.but union members will share the most highest memory
of the union member.i.e data type.
we can access all the members of structure at a time.
but in union we can access a single union member at a time.
regards,
karthikeyan,
TRIOZTECH
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / dasari chaithanya
The difference between structure and union is ,structure
will occupie total number of bytes or memory sometimes
waste memory,but union is which is the higest memory than
the data will store the memory location.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sevak.yatrik777
While structure enables us treat a number of different
variables stored at different in memory , a union enables us
to treat the same space in memory as a number of different
variables. That is a Union offers a way for a section of
memory to be treated as a variable of one type on one
occasion and as a different variable of a different type on
another occasion.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the function of void main()?
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
Why is c called c not d or e?
what is ans for this scanf(%%d",c);
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is c programming structure?
The file stdio.h, what does it contain?
What is a protocol in c?
What is n in c?
the operator for exponencation is a.** b.^ c.% d.not available
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What is operator promotion?