remquo
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 <math.h>
|
||
| float remquof( float x, float y, int *quo ); |
(desde C99) | |
| double remquo( double x, double y, int *quo ); |
(desde C99) | |
| long double remquol( long double x, long double 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) |
| C++ documentation for remquo
| |