Fixed some typos. (#26132)

This commit is contained in:
Shardic1
2018-10-23 07:19:25 +05:30
committed by Martin Payne
parent 7b2afb246d
commit e815d86998

View File

@ -4,8 +4,8 @@ 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 that which it is named as. It goes to the mentioned occurence of the next label,wherever may it be.
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
@ -19,8 +19,8 @@ goto <label>;
//This takes the exe to the next appearance of label.
goto is something that transcends all loops.To be clearer on this point, here is an example.
goto is something that transcends all loops. To be clearer on this point, here is an example.
https://code.sololearn.com/cI4qqQA8W2q3
However, care must be taken to use goto very carefully, especially in early days of coding as it can lead to crazy issues, if not understood well enough.
However, care must be taken to use goto very carefully, especially in the early days of coding as it can lead to crazy issues, if not understood well enough.