POS

This function has no arguments. The POS function returns an integer value representing the cursor position on the screen, relative to the last PRINT command.

Program Example.

00100 REM The POS function
00110 PRINT "microbee";
00120 PRINT POS
00130 END 

Try it