GOTO statement develops an infinite loop in a program. true or false
Answers
Answered by
1
Answer:
Most commonly, in unstructured programming this is jump back up (goto), while in structured programming this is an indefinite loop (while loop) set to never end, either by omitting the condition or explicitly setting it to true, as while (true) ... .
Answered by
0
TRUE!!
GOTO statement develops an infinite loop in a program.
Similar questions