InterviewSolution
Saved Bookmarks
| 1. |
Explain union with its operation |
|
Answer» is a special data type available in C that ALLOWS to store different data types in the same memory LOCATION. You can define a union with MANY members, but only one member can CONTAIN a value at any given TIME. Unions provide an efficient way of using the same memory location for multiple-purpose. |
|