Correct option is (a) int quot and int rem
Easy explanation - A structure of type div_t is returned by the function div(), contains both the quotient and the remainder. The structure contains two members,
int quot; /* quotient */
int rem; /* remainder */