Might be a stupid question, but if I create a console-application that dynamicly creates object and such, I make sure to free the memmory at shutdown. What happens if a user clo
Unless you have an embedded (or buggy) O/S you don't need to do anything.
If you do have an embedded (or buggy) O/S, you need to rigorously keep track of all your memory allocations and ensure there's a corresponding free. For a buggy O/S, you should additionally complain to the provider of said O/S