Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Program to find GCD

Posted in C Tutorial
Updated on Jan 10, 2024
By Mari Selvan
πŸ‘οΈ 225 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
C Program to find GCD

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, solving mathematical problems is a common and essential task. One frequently encountered mathematical concept is the Greatest Common Divisor (GCD) of two numbers.

The GCD is the largest positive integer that divides both numbers without leaving a remainder.

In this tutorial, we'll explore a C program that efficiently calculates the GCD of two given numbers.

πŸ“„ Example

Let's delve into the C code that achieves this functionality.

findGCD.c
Copied
Copy To Clipboard
#include <stdio.h>

// Function to find GCD using Euclidean algorithm
int findGCD(int num1, int num2) {
  while (num2 != 0) {
    int temp = num2;
    num2 = num1 % num2;
    num1 = temp;
  }
  return num1;
}

// Driver program
int main() {
  // Replace these values with your desired numbers
  int number1 = 48;
  int number2 = 18;

  // Call the function to find GCD
  int gcd = findGCD(number1, number2);

  printf("GCD of %d and %d is: %d\n", number1, number2, gcd);

  return 0;
}

πŸ’» Testing the Program

To test the program with different numbers, simply replace the values of number1 and number2 in the main function.

Output
GCD of 48 and 18 is: 6

Compile and run the program to see the GCD in action.

🧠 How the Program Works

  1. The program defines a function findGCD that takes two numbers as input and uses the Euclidean algorithm to calculate their GCD.
  2. Inside the main function, replace the values of number1 and number2 with the desired numbers.
  3. The program calls the findGCD function and prints the result.

🧐 Understanding the Euclidean Algorithm

The Euclidean algorithm is a widely used method for finding the GCD of two numbers. It iteratively replaces the larger number with the remainder of the division of the larger number by the smaller number until the remainder becomes zero. The GCD is then the non-zero remainder.

🌐 Real-World Applications

Understanding and calculating the GCD is essential in various fields, including cryptography, computer science, and number theory.

For instance, it plays a crucial role in algorithms for reducing fractions to their simplest form.

🎒 Optimizing the Program

While the provided program is effective, there are other algorithms, such as the Stein algorithm, that can be more efficient for large numbers. Consider exploring and implementing different algorithms based on your specific requirements.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
7 months ago

If you have any doubts regarding this article (C Program to find GCD) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy