What is Union?

An union is a special datatype in C that allows to store different data types in the same memory location.It allows efficient way of using the same memory location for multi purpose.
 
Back
Top