As imamLL is very versatile in storing any type of data into a list, you can store struct into an element like shown in the following code example:
~~~~~~
struct Person {
char name[24];
double age;
double weight;
double height;
};
struct imamLL People_list = NULL; / Pointer to hold list /
struct imamLL_element person = NULL; / Pointer to hold individual element /
unsigned long c;... read more