new and delete Operators
C++ supports dynamic allocation and deallocation of objects using the new and delete operators. These operators allocate memory for objects from a pool called the free store. C++ supports dynamic allocation and deallocation of objects using the new and de
msdn.microsoft.com |