View Single Post
nmh
Go4Expert Member
18Sep2007,10:20  
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