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
No, any automatic variables in your loops will not cause programming leaks if you break out of your loops with a goto statement.