remquo
De cppreference.com
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
Definido en el archivo de encabezado <math.h> | ||
float remquof(float x, float y, int*quo ); | (desde C99) | |
double remquo(double x, double y, int*quo ); | (desde C99) | |
longdouble remquol(longdouble x, longdouble y, int*quo ); | (desde C99) | |
pulg. Calcula el resto de la operación de punto flotante x/y división como la función
remainder()
hace. Además, la señal y al menos tres de los últimos bits de x/y se almacenarán en quo .Original:
Computes the remainder of the floating point division operation x/y as the
remainder()
function does. Additionally, the sign and at least the three of the last bits of x/y will be stored in quo.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar]Parámetros
x, y | - | valores de punto flotante Original: floating point values The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
quo | - | puntero a un entero.. valor para almacenar algunos bits de x/y Original: pointer to an integer value to store some bits of x/y in The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar]Valor de retorno
El resto de los argumentos que se dividen
Original:
Remainder of dividing arguments
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar]Ver también
(C99) | firmado resto de la operación de división Original: signed remainder of the division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |
resto de la operación de división de punto flotante Original: remainder of the floating point division operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
(C99) | el cociente y el resto de la división entera Original: the quotient and remainder of integer division The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) |
Documentación de C++ para remquo |