C / stdio.h / scanf
clearerr, fclose, feof, ferror, fflush, fgetc, fgetpos, fgets, fopen, fprintf, fputc, fputs, fread, freopen, fscanf, fseek, fsetpos, ftell, fwrite, getc, getcha, gets, perror, printf, putc, putchar, puts, remove, rename, rewind, » scanf, setbuf, setvbuf, sprintf, sscanf, tmpfile, tmpnam, ungetc, vfprintf, vprintf, vsprintf,
Funcion: scanf()
Sintaxis:
int scanf(const char *formato, ...);

Descripcion: Esta función es equivalente a fscanf con el argumento stdin interpuesto antes de los argumentos a scanf.
Ejemplo:
#include <stdio.h>
 
int main()
{
   char nombre[20]="";
   unsigned int edad=0;
 
   printf( "Escriba su nombre: " );
   scanf( "%s", nombre );
   printf( "Escriba su edad: " );
   fscanf( stdin, "%u", &edad );
 
   printf( "\nHola %s. Tienes %d anyos.\n", nombre, edad );
 
   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