//EE 312 //Roger Priebe //9/5/18 // //This program demonstrates clearing a screen in Windows and Linux // #include #include #include int main(int argc, char *argv[]) { printf("before\n"); //uncommment for Windows //system("cls"); //Windows only //printf("WIN\n"); system("clear"); //Linux only printf("LINUX\n"); printf("after\n"); return 0; }