Question: Write function named reduce that takes two positive integer arguments (as reference), call them num and denom, treats them as the numerator and denominator of

Write function named "reduce" that takes two positive integer arguments (as reference), call them "num" and "denom", treats them as the numerator and denominator of a fraction, and reduces the fraction.

The function should return the value 0 (to indicate failure to reduce: if either of the two arguments is zero) and should return the value 1 otherwise.

Function Prototype: bool reduce(int & num,int & denom);

Example:******************************************************

num= 10

denom=50

after calling reduce function

1. function must return 1

2. updated value of num will be 1

3. updated value of denom will be 5

DO NOT USE ARRAYS, BUILT IN FUNCTIONS OR CMATH LIBRARIES. YOU MAY BUILD YOUR OWN MATHS FUNCTIONS IN THE PROGRAM.

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 Programming Questions!