Librerias En C
Enviado por NETO • 11 de Diciembre de 2013 • 670 Palabras (3 Páginas) • 339 Visitas
LIBRERIAS EN LENGUAJE C
#include <stdio.h>
clearerr fclose feof ferror fflush fgetc fgetpos
fgets fopen formato fprintf fputc fputs fread
freopen fscanf fseek fsetpos ftell fwrite getc
getchar gets perror printf putc putchar puts
remove rename rewind scanf setbuf setybuf sprintf
sscanf tmpfile tmpnam ungetc vfprintf vprintf vsprintf
#include <stdlib.h>
abort abs atexit atof atoi atol bsearch
calloc div exit free getenv labs ldiv
malloc mblen mbstowcs mbtowc qsort rand Realloc
srand strtod strtol strtoul system wctomb
#include <string.h>
memchr memcmp memcpy memmove memset strcat strchr
strcmp strcoll strcpy strcspn strerror strlen strmcat
strmcmp strmcpy strpbrk strrchr strspn strstr strtok
strxfrm
#include <ctype.h>
tolower toupper
#include <locale.h>
localeconv setlocale
#include <math.h>
Acos Asin atan atan2 ceil cos cosh
Exp Fabs floor fmod frexp ldexp log
log10 modf pow sin sinh sqrt tan
tanh
#include <setjmp.h>
longjmp setjmp
#include <signal.h>
raise signal
#include <time.h>
asctime clock ctime difftime Gmtime localtime mktime
strftime time
#include <conio.h>
Contiene los prototipos de las funciones, macros, y constantes para preparar y manipular la consola en modo texto en el entorno de MS-DOS®.
cgets
clreol
clrscr
cprintf
cputs
cscanf
delline
getche
getpass
gettext
gettextinfo
gotoxy
highvideo
inport
insline
kbhit
lowvideo
movetext
normvideo
outport
putch
puttext
setcursortype
textattr
textbackground
textcolor
textmode
ungetch
Otras librerías que no tienen funciones asociadas. Pero tienen macros constantes y/o estructuras.
• #include <assert.h>
• #include <errno.h>
• #include <float.h>
• #include <limits.h>
• #include <stdarg.h>
• #include <stddef.h>
RESUMEN DE LIBRERIAS
• assert.h Contiene una macro para el diagnóstico dentro de los programas.
• ctype.h Contiene varias funciones para comprobación de tipos y transformación de caracteres.
• errno.h Contiene varias macros usadas para informar de errores.
• limits.h Contienen varias macros que definen constantes para el tamaño de tipo enteros.
• float.h Contienen varias macros que definen
...