Numeric limits
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header
<stdint.h> | |
| PTRDIFF_MIN (C99) |
valor mínimo del objeto de tipo ptrdiff_t Original: minimum value of object of ptrdiff_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| PTRDIFF_MAX (C99) |
valor máximo del objeto de tipo ptrdiff_t Original: maximum value of object of ptrdiff_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| SIZE_MAX (C99) |
valor máximo del objeto de tipo size_t Original: maximum value of object of size_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| SIG_ATOMIC_MIN (C99) |
valor máximo del objeto de tipo sig_atomic_t Original: maximum value of object of sig_atomic_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| SIG_ATOMIC_MAX (C99) |
valor máximo del objeto de tipo sig_atomic_t Original: maximum value of object of sig_atomic_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| WCHAR_MIN (C99) |
valor máximo del objeto de tipo wchar_t Original: maximum value of object of wchar_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| WCHAR_MAX (C99) |
valor máximo del objeto de tipo wchar_t Original: maximum value of object of wchar_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| WINT_MIN (C99) |
valor máximo del objeto de tipo wint_t Original: maximum value of object of wint_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| WINT_MAX (C99) |
valor máximo del objeto de tipo wint_t Original: maximum value of object of wint_t type The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
[editar] Límites de los tipos enteros
| Defined in header
<limits.h> | |
| CHAR_BIT |
número de bits en el byte Original: number of bits in byte The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| MB_LEN_MAX |
número máximo de bytes en un carácter multibyte Original: maximum number of bytes in a multibyte character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| CHAR_MIN |
valor mínimo de char Original: minimum value of char The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| CHAR_MAX |
valor máximo de char Original: maximum value of char The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| SCHAR_MIN SHRT_MIN INT_MIN LONG_MIN LLONG_MIN (C99) |
valor mínimo de signed char, short, int, long y long long respectivamente Original: minimum value of signed char, short, int, long and long long respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| SCHAR_MAX SHRT_MAX INT_MAX LONG_MAX LLONG_MAX (C99) |
valor máximo de signed char, short, int, long y long long respectivamente Original: maximum value of signed char, short, int, long and long long respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| UCHAR_MAX USHRT_MAX UINT_MAX ULONG_MAX ULLONG_MAX (C99) |
valor máximo de unsigned char, unsigned short, unsigned int, unsigned long y unsigned long long respectivamente Original: maximum value of unsigned char, unsigned short, unsigned int, unsigned long and unsigned long long respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
[editar] Límites de los tipos de punto flotante
| Defined in header
<float.h> | |
| FLT_RADIX |
la base (radix entero) utilizado por la representación de los tres tipos de punto flotante Original: the radix (integer base) used by the representation of all three floating-point types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| DECIMAL_DIG (C99) |
número de dígitos decimales que se pueden convertir en long double y volver sin perder precisión Original: number of decimal digits that can be converted to long double and back without losing precision The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MIN DBL_MIN LDBL_MIN |
valor mínimo de float, double y long double respectivamente Original: minimum value of float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MAX DBL_MAX LDBL_MAX |
valor máximo de float, double y long double respectivamente Original: maximum value of float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_EPSILON DBL_EPSILON LDBL_EPSILON |
diferencia entre 1.0 y el siguiente valor representable por float, double y long double respectivamente Original: difference between 1.0 and the next representable value for float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_DIG DBL_DIG LDBL_DIG |
número de dígitos decimales que pueden ser representados sin perder precisión para float, double y long double respectivamente Original: number of decimal digits that can be represented without losing precision for float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MANT_DIG DBL_MANT_DIG LDBL_MANT_DIG |
número de dígitos FLT_RADIX de base que se puede representar sin perder precisión para float, double y long double respectivamente Original: number of base FLT_RADIX digits that can be represented without losing precision for float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MIN_EXP DBL_MIN_EXP LDBL_MIN_EXP |
entero negativo mínimo tal que FLT_RADIX criado por una potencia menor que el número entero es un normalizado float, double y long double respectivamente Original: minimum negative integer such that FLT_RADIX raised by power one less than that integer is a normalized float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MIN_10_EXP DBL_MIN_10_EXP LDBL_MIN_10_EXP |
entero negativo mínimo tal que 10 criado por una potencia menor que el número entero es un normalizado float, double y long double respectivamente Original: minimum negative integer such that 10 raised by power one less than that integer is a normalized float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MAX_EXP DBL_MAX_EXP LDBL_MAX_EXP |
entero máximo positivo tal que FLT_RADIX criado por una potencia más que eso es un número entero normalizado float, double y long double respectivamente Original: maximum positive integer such that FLT_RADIX raised by power one more than that integer is a normalized float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_MAX_10_EXP DBL_MAX_10_EXP LDBL_MAX_10_EXP |
entero máximo positivo tal que 10 criado por una potencia más que eso es un número entero normalizado float, double y long double respectivamente Original: maximum positive integer such that 10 raised by power one more than that integer is a normalized float, double and long double respectively The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_ROUNDS |
modo de redondeo de punto flotante aritmética, igual a float_round_style Original: rounding mode of floating-point arithmetics, equal to float_round_style The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |
| FLT_EVAL_METHOD (C99) |
utilizar de precisión extendida para los resultados intermedios: 0 no se utiliza, 1 double se utiliza en lugar de float, 2: long double se utiliza Original: use of extended precision for intermediate results: 0 not used, 1 double is used instead of float, 2: long double is used The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (macro constante) |