0 Comments
void divide (int x, int y, int*q, int*r)
{
*q = x / y;
*r = x % y;
}
9.4m questions
12.2m answers