Thread
:
Clear the screen in Dev CPP
View Single Post
03-07-2005, 04:33 PM
#
2
(
permalink
)
Tarquini
Registered User
Join Date: Mar 2005
Posts: 2
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
View Public Profile
Find More Posts by Tarquini