BPUTC
BPUTC #fileN, byte
Writes a byte byte
on file or device in binary mode.
See BGETC for reading bytes from a file or device.
Example
' create a binary file
open "BinaryFile.txt" for output as #1
for c = 0 to 255
bputc #1, c
next
close #1
' open binary file and print content
open "BinaryFile.txt" for input as #1
for i = 0 to 255
bgetc(1)
c = print CHR(c);
next
close #1
Code samples using BPUTC
File
ACCESS
BGETC
BLOAD
BPUTC
BSAVE
CHDIR
CHMOD
CLOSE
COPY
DIRWALK
EOF
EXIST
FILES
FREEFILE
INPUT
INPUT
KILL
LOCK
LOF
MKDIR
OPEN
READ
RENAME
RMDIR
SEEK
SEEK
TLOAD
TSAVE
WRITE
If there is insufficient information on this page and you wish learn more about BPUTC,
please send an email to smallbasic@gmail.com. You can help to improve information about
BPUTC by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.