0
How can we do a space?
hi friends! I am making a multiplication table and I am using for loop and I want space after each table, please tell how to take space? thanks.
4 Answers
+ 2
\t
+ 1
Ok... That's quite easy...
If you want a single blank space, you use double quotes in printing stream as
" "
or if you want space for multiple blank space or saying simply a tab then write this
"\t"
+ 1
use "\n" or endl; for new lines. the "\t" to create tabs. play around with the different types
0
thanks