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 Developer Videos
More...Latest CodeGuru Developer Columns

Understanding the C++ Utility Components in the C++ Standard Library
Learn more about a few commonly used components and explore their utility and usages.

Beginning C#: User-defined Type Conversion Operators
Become proficient with using type definitions in C#.

Doing Cryptography in Visual Basic
Learn about the various forms of encryption in Visual Basic and the differences among them.
The Value of APIs
Application Programming Interfaces (APIs) are where you have to be. It's not a matter of if as much as a matter of which.