View Single Post
Old 03-07-2005, 04:33 PM   #2 (permalink)
Tarquini
Registered User
 
Join Date: Mar 2005
Posts: 2
Tarquini is on a distinguished road
The only way that I know to clear the screen in a program is to send CLS command to the system. Like this.
Code:
#include <stdlib.h>

int main()
{
     system("cls");
     return 0;
}
Tarquini is offline   Reply With Quote