employer cover photo
employer logo
employer logo

Schweitzer Engineering Laboratories

Is this your company?

Schweitzer Engineering Laboratories Interview Question

What is a union in C?

Interview Answer

Anonymous

Oct 14, 2015

A union is a special data type available in C that enables you to store different data types in the same memory location. You can define a union with many members, but only one member can contain a value at any given time.