Starting a C++ project. Should I worry about freeing dynamic allocated memory?
- by Luca Matteis
I am pretty proficient with C, and freeing memory in C is a must.
However, I'm starting a new C++ project, and I've heard some things about how you don't need to free memory using shared pointers and other things.
Where should I read about this? Is this a valuable replacement for proper delete C++ functionality? How does it work?