#include <stdlib.h> div_t div(int numerator, int denominator);
typedef struct { int quot; /* quotient */ int rem; /* remainder */ } div_t;