Understand how to properly use pointers in your C/C++ programming, and you're on your way to mastering the language.
Latest Memory Articles
C++ Programming: A Better Vector Trim Algorithm With Move Semantics
Vectors are one of the single most useful and most used objects in the STL. They are easy to use, and remove the burden of memory management from the user. It is possible to partially control memory usage by using functions like reserve
, but nothing is provided to free up excess memory. Users have come up with ways to trim a vector by hand, but with the advent of the new C++0x and its move semantics, the classic solution of copy-swaping has become excessively expensive. This article seeks to find a better solution.
Intelligent Memory Buffer Class on Non-MFC(SDK) Platforms
Check out this stand-alone, intelligent "increasing buffer" class. It's useful for a Win32 SDK project without using MFC.
Application-Level Memory Management for Memory-Constrained Devices
Discover a faster and better dynamic memory allocation technique for real-time systems.
Copy Constructors and Assignment Operators
Copying constructors and assignment operators is easy—once you learn the rules, and you can learn those rules right here.
Fast, Efficient Allocator for Small Blocks of Memory
Learn about an approach to allocate small blocks of memory quickly and efficiently.
Latest CodeGuru Developer Columns
C++ Exception Handling: How to Handle Exceptions in C++
Learn to implement exception handling mechanism in C++.

Coding a Bing Bot
Bots are rapidly replacing the older technologies. Read through and become proficient with Bing Bots.

Introduction to Visual Basic List Controls
Learn how to insert, add, and remove items from Listboxes, ComboBoxes, CheckedListBoxes, ListViews, and TreeViews.

Creating the Best Virtual Reality User Experience (VR UX): Seven Tips & Tricks
When building Virtual Reality user experience (VR UX), here are seven tips you should consider.