Performs "/" and "%" operations for the same operands simultaneously.
imaxdiv_t imaxdiv(intmax_t n, intmax_t d);
n The left hand side operand of "/" or "%" operator
d The right hand side operand of "/" or "%" operator
An object typed as struct imaxdiv_t, which has members quot (the quotient) and rem (the remainder).