From: "mephisto" Newsgroups: comp.os.msdos.djgpp Subject: re: "big" arrays Date: 28 Dec 97 23:30:12 GMT Organization: Cloudnet Lines: 8 Message-ID: <01bd13ea$293d4c40$a8dcc7c7@suzie> NNTP-Posting-Host: news.cloudnet.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk I don't know how it would work if your program compiled under V1, but here's what I do know: When you have a line like this "char MyArray[20000000];", DJGPP will attempt to allocate the array, but if you use implicit allocation(ie, not using malloc or an equilavent) DJGPP won't make your program crash. So, use malloc and test the results.