Which QB64 statement causes the control to shift from one point to another? plz and I'll mark you as the brainliest.
Answers
Answered by
8
QB64 is one of the programming languages that are not used in large scale nowadays.
QB64, rather, is used just to teach beginners who are entirely new to the concept of computer programming.
QB64 is the latest version of Q-Basic.
GOTO statement is a QB64 statement that causes the control to shift from one point to another.
GOTO statement is followed by the line number of the program to which we want to shift the control to.
QB64, rather, is used just to teach beginners who are entirely new to the concept of computer programming.
QB64 is the latest version of Q-Basic.
GOTO statement is a QB64 statement that causes the control to shift from one point to another.
GOTO statement is followed by the line number of the program to which we want to shift the control to.
Answered by
2
Answer:
GoTo (goto, GOTO, GO TO or other case combinations, depending on the programming language) is a statement found in many computer programming languages. It performs a one-way transfer of control to another line of code; in contrast a function call normally returns control.
Similar questions