I'm looking for a particular way to output spaces in C++. Currently, I can make a loop with the cout << ' '; but I would like to be able to designate how many spaces are made. In BASIC, I could use the command spc(x) where x is an integar variable containing the number of spaces that I want.
Basically, I want a way to make a loop print out one less space each time it executes.
Basically, I want a way to make a loop print out one less space each time it executes.