cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Most efficient code to clear screen
Most efficient code to clear screen
Aug 29, 2009 at 6:53pm UTC
Alan
(91)
The only way I know to clear the console screen is
system(
"cls"
);
... This prooves very innefficient. (I assume it sets all the characters at every position to
'\0'
or somethin...
Whats the best way to go about clearing the screen?
Aug 29, 2009 at 6:55pm UTC
johnkravetzki
(98)
http://cplusplus.com/forum/articles/10515/
Aug 29, 2009 at 6:59pm UTC
Alan
(91)
THANKS :p
Topic archived. No new replies allowed.