Memory Leak Detector with C++

# Introduction Memory leak has always been one of the hardest problems, even for senior programmers. Memory leak still proceeds when they get lapsed for some time. Besides the basic leak phenomenon of allocated memory, there are many different types of memory leak, such as exception branch leaking etc. This project guides you to implement a memory leak detector. ## Things to Learn - To overwrite operator `new` - Predefined macros `__FILE__` and `__LINE__` - Static variables in headfile - Smart pointer `std::shared_ptr`

|60 : 00

Click the virtual machine below to start practicing