Bloomberg interview question

What is 'union'?

Interview Answers

Anonymous

30 Aug 2010

variables that occupy the same memory space

Anonymous

7 Mar 2016

Union is a structure which one or few(most used situation when it contains 1+ member) members with different data types which share same memory, and sizeof(Union) is equal to sizeof of largest member of Union.