How to find gcd using function?
Nov 10, 2011 at 4:38pm
How to write a program using function to find the greatest common division?
Does anyone has any ideas?
1 2 3 4 5 6 7 8 9
|
int gcd(int n, int m)
{
int gcd = 1;
return gcd;
}
|
Nov 10, 2011 at 5:03pm
Topic archived. No new replies allowed.