[run] Killed

What does it mean if my run is Killed? Does it mean I have overloaded the memory somewhere?
I have no idea what you're talking about, but when your program randomly crashes a possible reason is that you might have tried to access memory that doesn't belong to you.
In the situation that hanst99 is talking about you should get an error pop-up, if you do please post what it says and we can be more help to you from there.

Otherwise are you sure you application isn't just completing and closing? http://www.cplusplus.com/forum/beginner/1988/
I only ask because it's such a common issue for people and I don't know your experiance level.
My experience is fairly limited, but I don't think the application is just completing and closing. The code was working, then I made some adjustments (changed some functions, that kinda thing, nothing that should effect how it outputs) and now when I try to run it I just get the normal running lines (making, debugging, linking, running, those things) then it stops and I get a line saying

make: *** [run] Killed

I am using Terminal in Ubuntu.
It would have helped if you said it was an error message from make earlier. So, you got like, a make target that executes the program? Sounds like your prog crashed. If it's a small one, it's probably something like you accessing an off limits array of an array, or dereferencing an unitialized pointer, or something along those lines.
Sorry, I am still new to this, I thought it was just a standard error thing. Ok, I shall look into it. Thanks.
Topic archived. No new replies allowed.