Mail Archives: djgpp/1998/03/30/06:43:58
On Mon, 30 Mar 1998, Federico Spinazzi wrote:
> You can declare an array for com:
> char com[22222222222222];
^^^^^^^^^^^^^^
This is *way* too much. If you compile such a program it will bomb,
since automatic arrays cannot be larger than 256KB without changing the
default stack size. See section 15.9 of the DJGPP FAQ list, for more
about this.
You should always try to compile your code before suggesting that others
use it (or at least say it is untested).
- Raw text -