Returns the quotient and the remainder after the division of its arguments.
#include <stdlib.h> div_t div (int numer, int denom);
typedef struct { int quot, rem; } div_t;