I want to create a main list and each of the main list element has another list.
here is what i did
typedef struct smallList
{ char data;
struct smallList *next;
} small;
typedef struct bigList
{
int count;
char data;
struct bigList *next;
struct smallList *head;
} big;
but how do I access the small list data from the big list and add stuff to the small list. any help much appreciated. thanks....