What is the use of Print statement using tab function in qbasic
mithu25:
you may also use the print statements to send output to a print or a file...... the tab function with a single value moves the cursor to the specified column on the present line.
Answers
Answered by
22
PRINT is QBasic's text output function. It is the command that we will be exploring through this section. PRINT is a QBasic function that requires arguments. The argument in the Hello World program we just ran were the words "Hello World".
Answered by
2
Answer:
With a TAB function you can specify exactly where you want an item to be printed in an output line. It causes the computer to tabulate to a specified print position. The semicolon rather than the comma is generally used as a separator in PRINT statements containing TAB functions.
Similar questions