Thread
:
how to implement a linked list. In the struct it has string field
View Single Post
nmh
Go4Expert Member
18Sep2007,10:20
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