+ 1

a simple question....... which function is used in c language to clear screen ?

11th Aug 2018, 6:32 PM
Mukesh Kushwaha
Mukesh Kushwaha - avatar
2 odpowiedzi
+ 1
I don't know but I can tell you it isn't possible in SoloLearn. Just letting you know.
11th Aug 2018, 7:01 PM
ReimarPB
ReimarPB - avatar
+ 1
system("cls"); or void ClearScreen() { COORD cursorPosition; cursorPosition.X = 0; cursorPosition.Y = 0; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), cursorPosition); }
11th Aug 2018, 7:23 PM
B K