Returns quotient and remainder.
The imaxdiv subroutine computes numer / denom and numer % denom in a single operation.
Item | Description |
---|---|
numer | Specifies the numerator value to be computed. |
denom | Specifies the denominator value to be computed. |
The imaxdiv subroutine returns a structure of type imaxdiv_t, comprising both the quotient and the remainder. The structure contains (in either order) the members quot (the quotient) and rem (the remainder), each of which has type intmax_t.
If either part of the result cannot be represented, the behavior is undefined.