home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
programming
/
c
/
fortify.lha
/
ztest.cpp
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-02-03
|
191 b
|
17 lines
#include <iostream.h>
#include "zfortify.hpp"
void
main(int argc, char **argv)
{
char *foo = new char[123];
foo = new char[56];
foo[56] = 'a';
foo[-1] = '!';
delete[] foo;
}