On Wednesday 11 January 2006 21:10, Julie Stern wrote: > Hello, > I'm getting the error 'Killed' when I run my c program. > Everything compiled with no warnings or errors. Any advice > on how I may find what's really going on? Thanks. > > --Julie Usually, this type of errors shows that your program uses more memory than allowed by some OS setting. This can be due to memory leaks.or some similar type of memory management problems. Hope this helps! Adrian