0
Can we use goto in java .......pls explain
2 Answers
0
this can help youđ
https://www.google.com.vn/amp/s/www.geeksforgeeks.org/g-fact-64/am
0
goto is almost never use. if you shall return to the top of a program, it's better use a doWhile or while structure. goto is used for jump from a part of code to another. it's use normally in very big codes.