Pregunta de entrevista de Bloomberg

What is 'union'?

Respuestas de entrevistas

Anónimo

30 ago 2010

variables that occupy the same memory space

Anónimo

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.