Incubus 8-10 mint are used to transfer the control of the program to a specific line within the program
Answers
Answered by
0
Explanation:
It sounds like you might be referring to the GOTO statement in QBASIC, which is used to transfer control to a specific line within the program. The GOTO statement is used in the following format:
GOTO lineNumber
Where lineNumber is the line to which you want to transfer control. For example, the following code would transfer control to line 100:
GOTO 100
Keep in mind that the use of the GOTO statement can make your code more difficult to read and maintain, so it is generally recommended to use alternative control structures such as IF statements or loops instead.
I hope this helps! Let me know if you have any questions.
Similar questions