SPC int-exp

Used in conjunction with the PRINT statement, this command instructs BASIC to print int-exp spaces. SPC is different from TAB, since SPC will print int-exp spaces no matter where the cursor is positioned on the line.

Program Example.

00100 REM Demonstration of the SPC command
00110 PRINT "microbee";:PRINT TAB(13);"Computers"
00120 PRINT "microbee";:PRINT SPC(13);"Computers"
00130 END

Try it

See also PRINT, TAB