String program in BASIC, Q Basic, GW basic... write a program to display all displayable characters along with their ASCII codes
05 CLS
10 FOR I = 32 TO 255
20 PRINT USING "###"; i;
30 PRINT " ";CHR$(I);" ";
40 IF POS(0)>70 THEN PRINT CHR$(13)
50 NEXT I
60 END
Comments
Post a Comment