0
Where we use /t in c++ ?
5 Answers
+ 3
not just for C++.most languages have this utility to get a horizontal space
cout<<"\t"<<hello<<"\t";
System.out.println(*\t"+hello+"\t");
0
first, its "\t".
it is used for giving a horizontal tab.
0
actually not as tab, but like multiple spaces..
tab has a bit different function...
0
can you tell me what different function does a tab have from multiple spaces. Because I used to consider them the same.
0
...
if I use tab...
it will print like..
12 143 21
142 231 132
...
where the above numbers are exactly above the below ones
but using multiple space option..
12 143 21
142 231 232
..
where constant number of spaces are used..