Finding GCD

int gcd(int a, int b){ if(a%b==0) return b; return gcd(b,a%b); }
SHARE

Amit Ghosh

    Blogger Comment
    Facebook Comment

0 comments :

Post a Comment