Advertisement
bojandam1

Clear Screen

May 9th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <windows.h>
  2.  
  3. void cls()
  4. {
  5.     HANDLE hOut;
  6.     COORD Position;
  7.  
  8.     hOut = GetStdHandle(STD_OUTPUT_HANDLE);
  9.  
  10.     Position.X = 0;
  11.     Position.Y = 0;
  12.     SetConsoleCursorPosition(hOut, Position);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement