This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Windows.h> | |
void cls() | |
{ | |
COORD coordScreen = { 0, 0 }; | |
DWORD dwConSize, | |
cCharsWritten; | |
CONSOLE_SCREEN_BUFFER_INFO csbi; |