0
Why include the whole process library for an exit() if one can just use a label to go-to the end of main() ?
6/1/2018 4:36:19 PM
1 Answer
because the goto statement has to be in the same function as the label: http://en.cppreference.com/w/cpp/language/goto read the article linked under further reading
Send us a message