- 2
Goto means.?
ans.
2 odpowiedzi
0
It is used to forcefully move the instruction execution point to a specific label predefined, I think it's ancient, people avoid that approach these days, it's messy too, as much as possible, stay away from that.
Hth, cmiiw
- 1
"goto" allowing you to move from piece of code to another piece of code in main or in general.
DO NOT ever use "goto" it's leading to "spaghetti code", and if you feel you need to use it then probably you coded your idea wrong.