Question: Write a C++ program that takes 2 integers named k1 and k2. Write a function f() that divides the larger integer by the smaller integer.

Write a C++ program that takes 2 integers named k1 and k2. Write a function f() that divides the larger integer by the smaller integer. Function f() has the following signature: void f(int larger_, int smaller_, int *quotient_, int *remainder_) The function f() should calculate the quotient and the remainder of larger_ and smaller_. Function main() should define k1 and k2 and then call f(), passing them to it in the correct order. Function f() should return the quotient and the remainder as its 3rd and 4th parameter, respectively. For instance, if k1=3 and k2=100, then the program will print: Q = 33, R = 1

j

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!