Submitted Questions

  • What is a memory leak? How can we avoid it?

    DaisyWheel

    • Jul 25th, 2006

    To avoid memmory leaks you should use smart pointers.

    Guest

    • Jul 17th, 2006

    When dynamic memory allocation is used extensively, memory leak may occur.It happens when first memory block is not deleted . However, the address is lost because the pointer contains the address of s...