In this program we will calculate GCD (Greatest Common Divisor) or HCF (Highest Common Factor).
C program to convert GCD of the given 2 numbers
#include <stdio.h>
int main()
{
int n1, n2;
printf("Enter two positive integers: ");
scanf("%d %d", &n1, &n2);
while (n1 != n2)
{
if (n1 > n2)
n1 -= n2;
else
n2 -= n1;
}
printf("GCD = %d", n1);
return 0;
}
Output
Enter two positive integers: 36 96
GCD = 12