Advertisement
JustACodingStudent

Alternative to SystemCLS

May 6th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. //This is a function that can replace SystemCLS. However, it can be laggy at times.
  2.  
  3. void ClearScreen()
  4. {
  5.     for(int i = 0; i <= 100; i++){
  6.         cout << "\n";
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement