programming in c clear the screen code example
Example 1: clear screen c
#include <stdlib.h>
//...
system("clear"); //*nix
system("cls"); //windows
Example 2: clear screen in c
system(“cls”);
OR
system(“clear”);
#include <stdlib.h>
//...
system("clear"); //*nix
system("cls"); //windows
system(“cls”);
OR
system(“clear”);