1 2 3 4 5 6 7 8 9
/** clear our console */ #include <stdio.h> int main() { printf("\033c"); fflush(stdout); // force printing to console return 0; }