Clear Screen C

[Solved] Clear Screen C | C - Code Explorer | yomemimo.com
Question : clear screen c

Answered by : marton

#include <stdlib.h>
//...
system("clear"); //*nix
system("cls"); //windows

Source : https://stackoverflow.com/questions/18154579/how-do-i-clear-the-screen-in-c/18154598 | Last Update : Sun, 24 Jan 21

Question : clear screen in c

Answered by : yucky-yak-bufw2lbgcq4f

system("clear");// Linux and mac
system("cls");// windows
clrscr();//TurboC

Source : | Last Update : Sat, 29 Jan 22

Question : clear screen in c

Answered by : sad-santa

system(“cls”);
OR
system(“clear”);

Source : https://www.tutorialspoint.com/how-to-clear-console-in-c | Last Update : Fri, 21 Aug 20

Question : clear screen in c

Answered by : hurt-hyena-1dsw6k0el65c

system("cls");

Source : | Last Update : Thu, 28 May 20

Answers related to clear screen c

Code Explorer Popular Question For C