Correct Answer is: Structure
Explanation: In C programming, a struct, or structure, is a collection of variables of different data types under a single name. The struct keyword is used to define a structure.
To access the member variables of a structure, you use the dot operator.