how to implement a linked list. In the struct it has string field

nmh
Go4Expert Member
18Sep2007,10:20   #1
nmh's Avatar
struct is like this

struct Node
{
char str[];
struct Node *next;
}

then how can we implement Insert function how can we pass a data to it
Void Insert( )

can you please help
Go4Expert Founder
18Sep2007,11:14   #2
shabbir's Avatar
Searching the forums will give you solutions to what you are looking for. There are lots of linked list related articles which can help you.