MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/recursion/GCD_Rec.cpp:24–29  ·  view source on GitHub ↗

Driver program to test above function

Source from the content-addressed store, hash-verified

22
23// Driver program to test above function
24int main()
25{
26 int a = 98, b = 56;
27 cout<<"GCD of "<<a<<" and "<<b<<" is "<<gcd(a, b);
28 return 0;
29}

Callers

nothing calls this directly

Calls 1

gcdFunction · 0.85

Tested by

no test coverage detected