--- title: goto as a powerful utility --- # Intro to the use of goto and labels goto is one of the most powerful, yet highly underrated piece of logic in C++. Crazy amount of optimization can be achieved using goto, provided it is used properly. It does exactly what it is named as. It goes to the mentioned occurence of the next label, wherever may it be. # Terminology goto - The keyword used to go to the particular label. label - this can be named anything. # syntax goto