C / conio.h / cscanf
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: cscanf()
Sintaxis:
int cscanf(const char *formato, ...);

Descripcion: Recoge el texto y lo procesa según el formato dado por el argumento *formato. Esta función es similar a la función scanf., la diferencia está en que la función cscanf lee los datos desde la consola que son automáticamente mostrados.
Ejemplo:
#include <conio.h>
 
int main() {
   char nombre[25];
   int total;
 
   cprintf( "Escribe tu nombre:\r\n" );
   /* Intenta borrar unos caracteres escritos */
   total = cscanf( "%s", nombre );    
   cprintf( "Tu nombre es \"%s\"\r\n", nombre );
   cprintf( "N&uacute;mero total de elementos guardados: %d\r\n", total );
   cprintf( "Pulsa una tecla para continuar..." );
   getch();
 
   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