What is the easiest way to display changing numbers in the console? I have a normal command line program in C++ which uses cout, but I\'d like to display a percenta
cout
Use the backspace character.
cout << "10%"; // ... cout << "\b\b\b20%";