7 lines
242 B
C
7 lines
242 B
C
/*********************************************
|
|
* Description - This is how you clear the screen
|
|
* Author - Vilyaem
|
|
* Date - Nov 09 2023
|
|
* *******************************************/
|
|
#include <stdio.h>
|
|
void main(void){puts("\x1b[H\x1b[J");}
|