Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+17 votes

If the first part of code has a \t does that mean whatever is following the t has to end on the 8th space?

Such as ("\tHello");

Would you space over 3 times then type Hello?

asked in CSC211_Winter2018 by (1 point)

1 Answer

+6 votes

No, if the code begins with \t then whatever is following it would START after the 8th space.

Such as ("\tHello");

would output, "(8 spaces)Hello"

Hope this helps.

answered by (1 point)
...