In a union, all members share the same ________.
- Data Type
- Memory Address
- Name
- Value
In a union, all members share the same memory location. Unions allow different variables to occupy the same memory space, providing efficient storage.
Loading...
Related Quiz
- In C, what is the effect of using pointers as function parameters with regards to pass by value and pass by reference?
- How are the members of a structure accessed in C?
- What function is used to open a binary file for both reading and writing in C?
- You're developing a program that needs to frequently update specific records in a large binary file. Which file handling functions would be most useful to efficiently locate and update records?
- What is the default starting value of an enumeration in C?