How can I print a character N number of times using std::cout without looping?
std::cout
Is there a way to move the text cursor back to nullify the effect of std::cout << std::endl;? i.e. to move up a line (say we never printed anything after doing the std::cout << std::endl; operation).
std::cout << std::endl;
std::cout << std::string(100, '*') << std::endl;
To move a line up, you have to resort to terminal escapes (assuming that isatty() indicates that you are running on one).
isatty()
1.4m articles
1.4m replys
5 comments
57.0k users