8 lines
111 B
C
8 lines
111 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char ** argv) {
|
||
|
printf("\033[H\033[2J");
|
||
|
fflush(stdout);
|
||
|
return 0;
|
||
|
}
|