C / conio.h / clrscr
cgets, clreol, » clrscr, cprintf, cputs, cscanf, delline, getch, getche, getpass, gettext, gettextinfo, gotoxy, highvideo, inport, insline, kbhit, lowvideo, movetext, normvideo, outport, putch, puttext, _setcursortype, textattr, textbackground, textcolor, textmode, ungetch, wherex, wherey, window,
Funcion: clrscr()
Sintaxis:
void clrscr(void);

Descripcion: Esta función despeja la ventana de texto actual y coloca el cursor en la esquina superior izquierda: posición (1,1).


Ejemplo:
#include <conio.h>
#include <stdio.h>
 
int main() {
   printf( "Ejemplo de \"clrscr\"\n\n" );
   printf( "Pulsa una tecla para continuar...\n" );
   getch();
   clrscr();
 
   return 0;
}

Librerias C

Librerias ANSI C
   string.hcstring
   math.hcmath
   stdio.hcstdio
   time.hctime
   stdlib.hcstdlib
   ctype.hcctype
   locale.hclocale
   signal.hcsignal
   setjmp.hcsetjmp

Librerias Borland
   conio.h
   graphics.h