News

In C++, you allocate an array using an array new-expression of the form new T [n]. This expression returns a T * pointing to the first element in the allocated array. Note that both new T and new T [n ...
In my article, "How Helper Variables Can Simplify Debugging," I mentioned that it might be handy to add special debug variables for the objects in your code.We can go further with this idea. For ...