+ 4
What are the ways to print a text or number in one position by deleting previous values continuously
4 Antworten
+ 1
yes by printing backspace character
https://stackoverflow.com/questions/12765297/erasing-using-backspace-control-character
+ 4
For ex I want to print countdown
Then
For(int I =50;i>=0;i--)
{
Clrscr();
Printf("%d",I);
}
Any other methods available like this
+ 3
Tq
+ 1
by printing \b (backspace) sometimes help. but it depend on the terminal last time i was using cmd in windows 8 and still work.