Is it okay to use “go to” from a catch statement
Everything I have ever been told is that go to's are evil and stay away from them, but I think they may help me here (?). I would like to provide the user an option to restart the application when an exception is caught and am having a bit of trouble wrapping my head around what to do... My application will be monitored by another process, but there are some exceptions where I want to the user to be able to decide what to do without returning control to the calling process. Is something like this "acceptable"? Any other suggestions? Thanks so much! int main(){ initialize: try{ //do things }