Reputation: 698
I am working on an assignment that deals with storing and sorting some data. I had an idea to create a simple data structure as follows:
struct names
{
char username[9];
linked list of structs
}
struct login
{
char ip_addr[16];
int count;
}
I have my linked-list of login structs working properly, however, I am unsure as to how I would go about inserting a linked-list of structs into a different linked-list of structs. Is it even possible?
Upvotes: 0
Views: 877