Structures in C Language Tutorial Notes Study Material with Examples Structures Structures in C are used to encapsulate or group together different data into one object. We can define a structure as given below struct object {         char id [20];          int rollno;        int marks; }; The variablesContinue Reading