[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
remquo

The function remquo computes the same remainder as the remainder function.
Compatibility:
This function is compatible with the following targets:
Prototype:
#include <math.h>
double remquo (double x, double y, int *quo);
Parameters:
Parameters for this function are:
Return:
The remainder of x and y.
Remarks :
The argument quo points to an object whose sign is the sign as x/y and whose magnitude is congruent mod 2^n to the magnitude of the integral quotient of x/y, where n >= 3.
NOTE
The value of x may be so large in magnitude relative to y that an exact representation of the quotient is not practical.
See Also:
"remainder"
[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.
Last updated: August 16, 2000