Skip to content

Instantly share code, notes, and snippets.

@profesorek96
Created November 21, 2019 15:13
extern "C"
{
int gcd(int a,int b)
{
while(b!=0)
{
int r=a%b;
a=b;
b=r;
}
return a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment