In C, a struct is a custom data type.
As with other standard data types, we can define arrays of that type.
This is used to represent a list.
struct student { char name[20]; int age; }; struct student arr_stu[50]; // Define a structure array of 50 studentsSource:www.lautturi.com