Correct option is (a) div()
To explain: div_t div(int num, int den);
The div () function is used to compute the quotient and remainder of the division of the numerator num by the denominator den.div_t is the structure which contains a quotient member and a remainder member.