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 Member
|
|
| 18Sep2007,10:20 | #1 |
|
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 |
|
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.
|