printf(\"Error %d\\n\", 1); printf(\"\\nStatus: %d%%\", 50);
prints
Error 1 Status: 50%
In this set up, is ther
Sorry, you cannot.
But you may issue system calls to clear the whole screen instead, like system("clear") (OS-dependent).
system("clear")
Or use ncurses just as Kos mentioned in the comment.
ncurses