Question: Write therecursive function gcd(unsigned int m, unsigned int n ) as discussed in class that returns an int that is the greatest common divisor (GCD)

Write therecursive function gcd(unsigned int m, unsigned int n ) as discussed in class that returns an int that is the greatest common divisor (GCD) of m and n by using the following famous algorithm: if the second argument is larger than the first, then swap their positions (in other words, make sure the 1st argument is bigger than the 2nd) if m%n=0 (where % is the modulo function) then GCD(m,n)=n (because n is a factor of m - this is your "base case") else GCD(m,n)=GCD(n,m%n)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
