Subj : Re: Memory Management,. C Vs C++ To : borland.public.cpp.borlandcpp From : maeder@glue.ch (Thomas Maeder [TeamB]) Date : Sun Nov 16 2003 09:16 pm "Rob C. " writes: > Correct me if I'm wrong. I think that you are wrong. To my taste, there's a little bit too much prose and too less code in your post, so I might have misunderstood you. At any rate: there's absolutely no difference between using malloc()/free() and using new[]/new/delete[]/delete for managing the memory of the array and the objects its elements point to (except the function calls, of course). The problems and the path to the solution are exactly the same: for each allocation, be it of the array of what an array element points to, you need a deallocation. .