The greatest common divisor of two integers x and y is the
largest positive integer that evenly divides both. For example,
gcd(12,6)=6, gcd(21,14)=7, gcd(31,10)=1, gcd(55,25)=5
Recall that the gcd of two integers is gcd(a,0) = a gcd(a,b) =
gcd(b, a%b) Create int gcd(int x, int y).
Assume that the two integers are zero or positive. Write the
code as a pure function. Put it in a file gcd.c. Of course, you
will need to test it.
The function Φ(n) counts...