Path: utzoo!utgpu!water!watmath!clyde!att!osu-cis!tut.cis.ohio-state.edu!mailrus!nrl-cmf!cmcl2!adm!smoke!gwyn From: gwyn@smoke.BRL.MIL (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: What goes on stack? Message-ID: <8720@smoke.BRL.MIL> Date: 22 Oct 88 19:12:52 GMT References: <3221@sdsu.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 7 In article <3221@sdsu.UUCP> roetzhei@sdsu.UCSD.EDU (William Roetzheim) writes: > Other than return addresses, register values, and paramaters, what else >does Turbo C put on the stack? It very likely allocates automatic variables off the stack. If you have declared a large array as an auto variable, that's probably the cause of your problem.