Answers for "how to clear screen in c windows"

C
2

clear screen c

#include <stdlib.h>
//...
system("clear"); //*nix
system("cls"); //windows
Posted by: Guest on January-17-2021
1

clear screen in c

system(“cls”);
OR
system(“clear”);
Posted by: Guest on August-14-2020

Code answers related to "how to clear screen in c windows"

Code answers related to "C"

Browse Popular Code Answers by Language