home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07093.TXT < prev    next >
Encoding:
Text File  |  1993-09-17  |  498 b   |  9 lines

  1. Unlike the stack and the data area, memory from the free store can
  2. be allocated and deallocated explicitly by a C++ program.  The
  3. creation and destruction of objects in free store during the
  4. execution of a program is called dynamic memory allocation.  The
  5. C++ language includes two operators, new and delete, to support
  6. this powerful feature.  Dynamic memory is often used for data
  7. structures, such as linked lists, for which storage requirements
  8. can vary greatly during program execution.
  9.