+ 3
Function to clear screen beside clrscr()
as per new norms if we can't use conio.h as header file then what should I use to clear the screen content.
2 Answers
+ 4
Try outputting 100 newlines.đđđ
for(int I=0;I<100;I++)
cout<<endl;
+ 3
std::system("cls");