67.2k views
4 votes
Write the definition of a function divide that takes four arguments and returns no value. The first two arguments are of type int. The last two arguments arguments are pointers to int and are set by the function to the quotient and remainder of dividing the first argument by the second argument. The function does not return a value.

User Xenlo
by
6.5k points

1 Answer

8 votes

void divide (int x, int y, int*q, int*r)

{

*q = x / y;

*r = x % y;

}

User Dan Walmsley
by
7.2k points