Q:

Write a C program to find GCD(HCF) of N numbers using Arrays

0

Greatest Common Divisor

In mathematics, the greatest common divisor (gcd) of two or more integers, when at least one of them is not zero, is the largest positive integer that is a divisor of both numbers. For example, the GCD of 8 and 12 is 4.

The greatest common divisor is also known as the greatest common factor (gcf), highest common factor (hcf), greatest common measure (gcm), or highest common divisor.

 
 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Example : 

What is the greatest common divisor of 54 and 24?

The number 54 can be expressed as a product of two integers in several different ways:

Thus the divisors of 54 are: 1, 2, 3, 6, 9, 18, 27, 54  

Similarly, the divisors of 24 are: 1, 2, 3, 4, 6, 8, 12, 24

The numbers that these two lists share in common are the common divisors of 54 and 24:

1, 2, 3, 6 .

The greatest of these is 6. That is, the greatest common divisor of 54 and 24. One writes:

Here below is the source code of the C program to find HCF of N numbers using Arrays.The program is successfully compile and run(on Codeblocks) on the windows system and produce output below :

SOURCE CODE : :

#include<stdio.h>

int main()
{
    int n,i,gcd;
    printf("Enter how many no.s u want to find gcd : ");
    scanf("%d",&n);
    int arr[n];
    printf("\nEnter your numbers below :- \n ");
    for(i=0;i<n;i++)
    {
        printf("\nEnter your %d number = ",i+1);
        scanf("%d",&arr[i]);
    }
    gcd=arr[0];
    int j=1;
    while(j<n)
    {
       if(arr[j]%gcd==0)
       {
           j++;
       }
       else
       {
           gcd=arr[j]%gcd;
           i++;
       }
    }
    printf("\nGCD of k no.s = %d ",gcd);
    return 0;
}

OUTPUT : :


Enter how many no.s u want to find gcd : 6

Enter your numbers below :-

Enter your 1 number = 100

Enter your 2 number = 75

Enter your 3 number = 35

Enter your 4 number = 260

Enter your 5 number = 330

Enter your 6 number = 1000

GCD of k no.s = 5

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Arrays Solved Programs – C Programming

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Write a C Program to input values into an array an... >>
<< Write a C Program to find Mean, Variance and Stand...