What are the ways to print a text or number in one position by deleting previous values continuously | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What are the ways to print a text or number in one position by deleting previous values continuously

24th May 2019, 11:36 AM
M.MANIVANNAN
M.MANIVANNAN - avatar
4 Answers
24th May 2019, 1:40 PM
Taste
Taste - avatar
+ 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
24th May 2019, 1:37 PM
M.MANIVANNAN
M.MANIVANNAN - avatar
+ 3
Tq
24th May 2019, 1:51 PM
M.MANIVANNAN
M.MANIVANNAN - avatar
+ 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.
24th May 2019, 12:36 PM
Taste
Taste - avatar