Computer Science, asked by binod8797, 1 year ago

command used for leaving blank lines in qbasic

Answers

Answered by illicitreader
11

Writes to the screen. There are commands for printing to other things, like a printer, but that's to be discussed later. Each new PRINT command will start printing on a new line. To insert a blank line, don't specify a string to print. The syntax for "PRINT" is: PRINT "[whatever you want to be printed here]"


binod8797: You are very wrong
illicitreader: huhh
binod8797: let me study stop this rubbish
Answered by Anonymous
4

command used for leaving blank lines in qbasic is "PRINT".

  • PRINT is the qbasic's text output function.
  • Here PRINT ["Hello World!"], Hello World is the argument, where PRINT command requires arguments.
  • PRINT command displays the textual output on the screen. This textual output may be string constants; the values of variables, arrays, functions, or expressions. To send output to printer or file.
  • To understand PRINT, you should know more text cursor is the point on the screen at which next text to printed will appear.
Similar questions