โ Back to Functions/Methods
Question 299
Function: Recursive GCD
Function: Recursive GCD
Write a recursive functiongcd(int a, int b)that returns the greatest common divisor using Euclid's algorithm: ifb == 0returna, otherwise returngcd(b, a % b). Call it with48and36and 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.