Memory Leak: Failing to free memory that you no longer need . Exactly when the memory must be freed before it is considered a leak is debatable but certainly before the either:
- The program terminates.
- Additional memory is allocated
Best way to prevent Memory Leaks: Free memory as soon as it is no longer needed.
