Question d’entretien chez Bloomberg

What is 'union'?

Réponses aux questions d'entretien

Utilisateur anonyme

30 août 2010

variables that occupy the same memory space

Utilisateur anonyme

7 mars 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.