Loading...
Select Version
&pagelevel(4)&pagelevel
Syntax | #include <stdlib.h> lldiv_t lldiv(long long int dividend, long long int divisor); |
Description lldiv()
computes the quotient and remainder of the division of the numerator numer by
the denominator denom. Both the arguments and the result are of type The sign of the quotient is the same as the sign of the algebraic quotient. The value of the The remainder is expressed by the following equation: Quotient * Divisor + Remainder = Dividend | |
Return val. | Structure of type if successful. The structure includes the quotient quot as well as the |
See also |
|