Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- QuickBASIC 3.0 - <b>print # output to sequential file</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
PRINT #                  Output to Sequential File

 PRINT #filenum, [exprlist] [;]

    Writes to a specified disk file an image of what would be displayed on
    screen by a corresponding PRINT statement.

     filenum    The number under which the file was opened for output.

    exprlist    Numeric and/or string expressions to print. Each
                expression must be separated from the one after it by
                either a comma or a semicolon.

           ;    If included at the end of the statement, suppresses the
                usual carriage return and line feed.

   ----------------------------------------------------------------------

      Notes:    PRINT # outputs exactly the same characters that would
                appear on screen in response to a PRINT statement. Commas
                between expressions, for example, result in the insertion
                of space.

                If an expression to be output contains significant quote
                marks or commas, you should surround it with quote marks
                by means of CHR$(34); otherwise, when you input these
                fields, QuickBASIC will interpret the significant commas
                or quotes as delimiters.

See Also: PRINT PRINT # USING

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson