/ *************************************************************************
*
* Purpose: Clear the screen with VT100 escape codes. This can be done
* with conio.h on PCs - non standard code. Or curses.h, bit of
* a fag...
* Author: M.J. Leslie
* Date: 22-Jun-94
*
************************************************************************/
void clrscr(void);
main()
{
clrscr();
}
void clrscr(void)
{
printf("033円[2J"); /* Clear the entire screen. */
printf("033円[0;0f"); /* Move cursor to the top left hand corner */
}
file: /Techref/language/ccpp/cref/EXAMPLES/clrscr.c,
0KB, , updated: 1997年10月15日 22:26, local time: 2025年9月6日 12:04,
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE.
Questions?<A HREF="http://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/clrscr.c"> language ccpp cref EXAMPLES clrscr</A>
Did you find what you needed?
Welcome to massmind.org!
Welcome to techref.massmind.org!
.