CJCoding With Joseph

Function: Recursive GCD

Write a recursive function gcd(int a, int b) that returns the greatest common divisor using Euclid's algorithm: if b == 0 return a, otherwise return gcd(b, a % b). Call it with 48 and 36 and print the result:

12

Print with %d.

Expected Output:

12
Topics:
Functions/Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.