ldiv() - return quotient and remainder from division
#include <stdlib.h>
ldiv_t ldiv (int num, int denom)
The ldiv(3) function computes the value num/denom and returns the quotient and remainder in a structure named ldiv_t that contains two long integer members named quot and rem.
div(3)