Correctly managing the release of heap-allocated memory and other resources has been one of the great challenges of C and C++ development for decades. The new shared_ptr class, shipping with Visual Studio 2008 SP1 and Visual Studio 2010, makes dealing with resource management dramatically simpler.
Latest Pointers Articles
Pointer-to-Pointer and Reference-to-Pointer
Learn the reason behind using pointer-to-pointer and reference-to-pointer to modify a pointer passed to a function, to understand their usage better.
Lovely Pointers
A beginning-level article covering the problems, bugs, and technique solutions that correspond to using pointers.
DELEGATES and C++
This article shows an implementation of delegates.
Smart Pointer (with Object Level Thread Synchronization '& Reference Counting Garbage Collection)
Smart Pointer (with Object Level Thread Synchronization '& Reference Counting Garbage Collection)
AutoPtr<> Class
AutoPtr<> Class
Latest CodeGuru Developer Columns
C++ Exception Handling: How to Handle Exceptions in C++
Learn to implement exception handling mechanism in C++.

Integrating Maps into Your UWP App
Look at what can be done with mapping in a UWP (Universal Windows Platform) app.

Adding Camera Support to Universal Windows Platform Apps
With a UWP app, you can design for specific input modes and devices. Learn to control a camera from one.
Using C# 7 Pattern Matching
Take advantage of pattern matching to check for patterns in your code, improve performance, and simplify your code.