Todas Las Librerías y Funciones Del Lenguaje C
Todas Las Librerías y Funciones Del Lenguaje C
Todas Las Librerías y Funciones Del Lenguaje C
Para quienes estn interesados, les dejo una lista con el nombre de todas las libreras
standard de C y las funciones que contiene cada una.
Dej los ttulos de las libreras y las variables en ingls ya que quienes programamos nos
llevamos mejor con ese idioma (al menos en el momento de la programacin en si) que con
nuestro espaol de nacimiento.
* stdio.h
* ctype.h
* string.h
* math.h
* stdlib.h
* assert.h
* setjmp.h
* signal.h
* time.h
* isalnum(c)
* isalpha(c)
* iscntrl(c)
* isdigit(c)
* isgraph(c)
* islower(c)
* isprint(c)
* ispunct(c)
* isspace(c)
* isupper(c)
* isxdigit(c)
* sin(x)
* cos(x)
* tan(x)
* asin(x)
* acos(x)
* atan(x)
* atan2(x)
* sinh(x)
* cosh(x)
* tanh(x)
* exp(x)
* log(x)
* log10(x)
* pow(x,y)
* sqrt(x)
* ceil(x)
* floor(x)
* fabs(x)
* ldexp(x)
* frexp(x,double *ip)
* modf(x,double *ip)
* fmod(x,y)
Diagnostics: <assert.h>
Signals: <signal.h>
* clock_t clock(void)
* time_t time(time_t , *tp)
* double difftime(time_t time2 , time_t time1)
* time_t mktime(struct tm *tp)
* char *asctime(const time_t *tp)
* char *ctime(const time_t *tp)
* struct tm *gmtime(const time_t *tp)
* struct tm *localtime(const time_t *tp)
* size_t strftime(char *s, size_t smax, const char *fmt, const struct tm *tp)
fuente http://www.fepe55.com.ar/blog/2007/07/02/todas-las-librerias-y-funciones-standard-del-
lenguaje-c/