Answers for "how to clear screeen in c"

C
2

clear screen c

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

clear screen in c

system("clear");// Linux and mac
system("cls");// windows
clrscr();//TurboC
Posted by: Guest on January-22-2022

Code answers related to "C"

Browse Popular Code Answers by Language