Skip to content

Instantly share code, notes, and snippets.

@ciceroverneck
Created May 3, 2012 18:36
Show Gist options
  • Save ciceroverneck/2587984 to your computer and use it in GitHub Desktop.
Save ciceroverneck/2587984 to your computer and use it in GitHub Desktop.
mdc in c
int mdc(int a, int b){
int resto;
while(b != 0){
resto = a % b;
a = b;
b = resto;
}
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment