I have a program in which i need to break out of a large bunch of nested for loops. So far, the way most people have been telling me to do it is to use an ugly goto in my co
Nope. Local variables do not need to be individually cleaned up. When the stack pops, all the local variables will go away right along with it.