Computer Science, asked by mousoumesamadder, 1 day ago

GOTO statement develops an infinite loop in a program. true or false​

Answers

Answered by nutanrawat01988
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 MrTSR
0

TRUE!!

GOTO statement develops an infinite loop in a program.

Similar questions