Name
div_t type — Quotient and remainder type
Synopsis
struct div_t { int quot, rem; }
The div_t
type is used only
by the div
function to return the
quotient and remainder of an integer division. The order of the
quot
and rem
members in the structure may vary
between implementations.