gcvt - convierte un número en coma flotante a una cadena de caracteres
Biblioteca Estándar C (
libc,
-lc)
#include <stdlib.h>
char *gcvt(double number, int ndigit, char *buf);
gcvt():
Since glibc 2.17
(_XOPEN_SOURCE >= 500 && ! (_POSIX_C_SOURCE >= 200809L))
|| /* glibc >= 2.20 */ _DEFAULT_SOURCE
|| /* glibc <= 2.19 */ _SVID_SOURCE
glibc 2.12 to glibc 2.16:
(_XOPEN_SOURCE >= 500 && ! (_POSIX_C_SOURCE >= 200112L))
|| _SVID_SOURCE
Before glibc 2.12:
_SVID_SOURCE || _XOPEN_SOURCE >= 500
La función
gcvt() convierte
numero a una cadena de
caracteres ASCII con la mínima longitud posible, acabada en el
carácter NULL, y guarda el resultado en
buf. Produce
ndigit dígitos significativos en el formato F de
printf(3) o en el formato E.
La función
gcvt() devuelve
buf.
Para obtener una explicación de los términos usados en esta
sección, véase
attributes(7).
Interfaz |
Atributo |
Valor |
gcvt() |
Seguridad del hilo |
Multi-hilo seguro |
Marked as LEGACY in POSIX.1-2001. POSIX.1-2008 removes the specification of
gcvt(), recommending the use of
sprintf(3) instead (though
snprintf(3) may be preferable).
ecvt(3),
fcvt(3),
sprintf(3)
La traducción al español de esta página del manual fue
creada por Gerardo Aburruzaga García <
[email protected]>
Esta traducción es documentación libre; lea la
GNU
General Public License Version 3 o posterior con respecto a las
condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página
del manual, envíe un correo electrónico a
[email protected]