A Program to Calculate the GCD of Two Integers
In this example, we are giving a program to calculate the GCD(greatest common divisor) of given two integers.
Program to calculate the GCD:
#include <stdio.h>
int main()
{
int n1, n2, i, gcd;
printf("Enter two positive integers: ");
scanf("%d %d", &n1, &n2);
for(i=1; i <= n1 && i <= n2; ++i)
{
if(n1%i==0 && n2%i==0)
gcd = i;
}
printf("GCD of %d and %d = %d", n1, n2, gcd);
return 0;
}
Output:
Enter two positive integers: 49 7 GCD of 49 and 7 = 7