To tab for printer output, use the command POKE 36,POS.
For example, these commands send the data in A, B, and C for printing in columns starting at 10, 30, and 50:
100 POKE 36,10:PRINT A; : REM Go to column 10 and print A
110 POKE 36,30:PRINT B; : REM Column 30, print B
120 POKE 36,50:PRINT C : REM Last tab - no semicolon ends line