When the screen clears (`system("clear")`), an annoying visual glitch (like a flicker) occurs because the "clear" call is so slow. Also the `system("clear")` call is POSIX-only (meaning no Windows compatibility).
When the screen clears (
system("clear")), an annoying visual glitch (like a flicker) occurs because the "clear" call is so slow.Also the
system("clear")call is POSIX-only (meaning no Windows compatibility).