How would I clear screen using VC++.
I know in others its simply clrsc();
But I dont know for Microsoft.
Thanks in Advance.
Printable View
How would I clear screen using VC++.
I know in others its simply clrsc();
But I dont know for Microsoft.
Thanks in Advance.
In MS VC++:
Code:system("cls");
Thanks HarryW