Memory management is a core task in native world, careless usage of dynamic memory may cause the following problems: - 1. Heap Fragment , this will introduce performance penalty since it breaks data locality - 2. Memory Leak, it's a prgm correctness problem
Read More...