include stdio.h
int main()
{
int n1=20, n2=30, i, gcd;
printf("n1=%d\n n2=%d\n",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 is %d", n1, n2, gcd); return 0;
}
Find the output for the following program

Posted on by