In article <3221 at sdsu.UUCP> roetzhei at 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.