0
what is a goto statement
2 Antworten
+ 8
A goto statement provides an unconditional jump from the goto to a labeled statement in the same function. NOTE − Use of goto statement is highly discouraged because it makes difficult to trace the control flow of a program, making the program hard to understand and hard to modify.
https://www.tutorialspoint.com/cplusplus/cpp_goto_statement.htm
+ 2
https://msdn.microsoft.com/en-us/library/b34dt9cd.aspx
http://en.cppreference.com/w/cpp/language/goto