Does C++ delete operator really free memory?
Posted on Wed 20 September 2017 in IT, programming
Well, I have been wondering about this for quite a while now, and I have tried to run some tests to better understand what's going on under the hood. The standard answer is that after you call delete you should not expect anything good from accessing that memory spot. However …