Domanda di colloquio di Bloomberg

What is 'union'?

Risposte di colloquio

Anonimo

30 ago 2010

variables that occupy the same memory space

Anonimo

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.