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

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