How to delete automatically created variable, array, etc.?

When I initialize some automatic object, how I can delete it from stack? I know that compiler takes care of that, but sometimes I want to free memory from unused variables when I want.
What do you mean by automatic object?

This? int i=1;?

Well, you can't. Or, well, you could create a scope and place that variable in it, but I don't see why you'd want to do that.
Ok, thanks for help!
Topic archived. No new replies allowed.