home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07143.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  302 b   |  6 lines

  1. The new and delete operators may use a different memory allocation
  2. scheme than the standard functions.  Memory allocated by new
  3. should be deallocated by delete.  Memory allocated by malloc(),
  4. calloc(), or realloc() should be deallocated by free().  Try to
  5. avoid using both methods in one program.
  6.