what is the defrenece between structure and union
Answer Posted / nayanprakash
union is better then structure.union is declared with
keyword union.it can store more data which can store at
hights byte of veeriable is declared.structure is declred
a keyword struct.it will store for indivisul memory space.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What does c value mean?
Is fortran faster than c?
What is use of bit field?
In a header file whether functions are declared or defined?
Is Exception handling possible in c language?
what is the format specifier for printing a pointer value?
How is a macro different from a function?
What is pointer and structure in c?
Can variables be declared anywhere in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is meant by realloc()?
What are the complete rules for header file searching?
What does c mean?
What is a list in c?
Is c dynamically typed?