Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C Programming » Programs » Others » C program to find the GCD of given two numbers
Suryateja Pericherla Categories: Others. No Comments on C program to find the GCD of given two numbers
0
(0)

In this article we will learn to implement a C program to find the GCD of given two numbers. A C program is provided below to find the GCD of given two integers.

 

There is a restriction on the input. First number given as input must be greater than the second number.

 

Example inputs can be: 48, 14 or 12, 4 etc.

 

Program:

#include<stdio.h>
int main()
{
	int u, v;
	printf("Enter two numbers (first mnumber > second number): ");
	scanf("%d%d", &u, &v);
	while(v!=0)
	{
		int temp = u % v;
		u = v;
		v = temp;
	}
	printf("GCD is: %d", u);
	return 0;
}

 


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


Input and output for the above program is as follows:

Enter two numbers (first mnumber > second number): 48 14
GCD is: 2

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory