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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-11-23
|
302 b
|
6 lines
The new and delete operators may use a different memory allocation
scheme than the standard functions. Memory allocated by new
should be deallocated by delete. Memory allocated by malloc(),
calloc(), or realloc() should be deallocated by free(). Try to
avoid using both methods in one program.