Write a statement that declares a prototype for a function divide that takes four arguments and returns no value.

LANGUAGE: C++

CHALLENGE:

Write a statement that declares a prototype for 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 that 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.

SOLUTION:


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