Alternetive of goto statement? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Alternetive of goto statement?

30th Oct 2019, 11:32 AM
Ameer Wajid Ali
Ameer Wajid Ali - avatar
2 Answers
+ 3
The most straightforward way would be a do-while loop, since its structure is pretty much the same. So instead of writing label: // code if ( condition ) { goto label; } you use do { // code } while ( condition); Similarly to the goto statement, the code inside the loop will be executed at least one time. Depending on the code, a while loop might also be suitable, or the use of functions.
30th Oct 2019, 12:37 PM
Shadow
Shadow - avatar
+ 2
Any of the conditional branching or looping constructs can be used to avoid using goto. Also continue and break are alternatives. In case you are looking for something really esoteric, then learn about setjmp and longjmp. I would not recommend using them, but it is good to be aware of all tools that the language provides. Here is an example implementation of setjmp/longjmp by Geovanny Martínez Forero: https://code.sololearn.com/cbaxx13ylwgD/?ref=app Though his code is in C, the mechanism works also in C++.
30th Oct 2019, 2:43 PM
Brian
Brian - avatar