hi,

was wondering if this is possible? and how?
say..,

class LinkList()
{
int item;
LinkList *pNext;

public:
Insert(int value);
};

my questino is, how do i implement Insert? pls take note that pNext is private.., sorry if my subject is quite vague i'm not also clear about my problem..,

thanks,