Report Bug
Qus : What is the key difference between a structure and a union in C?
QusWhat is the key difference between a structure and a union in C?

A. A structure can store multiple data types, a union cannot
B. A union can store multiple data types, a structure cannot
C. In a structure, only one member can be accessed at a time
D. In a union, only one member can be accessed at a time


Solution
D. In a union, only one member can be accessed at a time






Report Bug