answersLogoWhite

0

Clearing screen in DEV C++ compiler :

#include
int main()
{
system("cls");
}








OR: Permanent solution :-
Paste the following text in "C:\Dev-Cpp\include\conio.h" of your system


#include
#include
void clrscr()
{
system("cls");
}




Then you can use clrscr() as a normal built in function under !!!!!!!!!!!

User Avatar

Wiki User

15y ago

What else can I help you with?