Structure is user defined data type available in C programming language that allows to combine data items of different kinds.
“struct” keyword is used to create a structure in C programming language.
Structure is user defined data type available in C programming language that allows to combine data items of different kinds. Structures are used to represent a record. for example you want to keep track of student of a school.
Structre in C Programming
Define Structures
First we have to define the data type to ctreate sturcture variables. Struct keyword is used to define a structure.