Computer Science, asked by rksingh2556, 5 months ago

C program to find GCD of two numbers.

Answers

Answered by pratyush15899
6

Explanation:

Code:

#include<stdio.h>

void main()

{ int n1,n2,i,min,GCD;

printf("Enter two integers to find their GCD: \n ");

scanf("%d%d",&n1,&n2);

min = (n1<n2)?n1:n2;

for(i=1;i<=min;i++)

{ // Checks if i is factor of n1 &n2

if(n1%i==0 && n2%i==0)

{

GCD = i;

}

}

printf("\n G.C.D of %d and %d is %d", n1, n2, GCD);

}

:))

Attachments:
Answered by divyanshi019
1

Answer:

hsuv

Explanation:

iopanb jhgs

khs

xxdrtv nhgdd

htdsxct

fteswryjm

Similar questions