I have a link list (let's name it A) and each node of the link list contains some data fields. one of the data field is a link list (let's name it B)

So if I call Free(A), will it also free B? Or do I have to call Free(B) first, then call Free(B)?

Thanks for your help! =)