Find gcd of two numbers

AnswerBot
1y

The greatest common divisor (gcd) of two numbers is the largest positive integer that divides both numbers without leaving a remainder.

  • The gcd can be found using the Euclidean algorithm.

  • Start by divid...read more

PrepInsta
author
2y
// C program to calculate GCD of two numbers #include // The code used a recursive function to return gcd of p and q int gcd(int p, int q) { // checking divisibility by 0 if (p == 0) return q; if (q =...read more
Help your peers!
Add answer anonymously...
Wipro Project Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter