Character codes: Difference between revisions

Content added Content deleted
(Added BASIC)
Line 33: Line 33:
file/tape. eg.
file/tape. eg.
make conv(tape, stand conv(stand out channel))
make conv(tape, stand conv(stand out channel))

=={{header|BASIC}}==
{{works with|QuickBasic|4.5}}
<qbasic>charCode = 97
char = "a"
PRINT CHR$(charCode) 'prints a
PRINT ASC(char) 'prints 97</qbasic>


=={{header|C}}==
=={{header|C}}==