HCF and LCM using while statement in C Program
//using while statement #include<stdio.h> int main() { int a,b,x,y,t,gcd,lcm; printf("Enter two integer:\n"); scanf("%d%d",&x,&y); a=x; b=y; while(b!=0) { t=b; b=a%b; a=t; } gcd=a; lcm=(x*y)/gcd; printf("Greatest common divisor of %d amd %d=%d\n",x,y,gcd); …
HCF and LCM using while statement in C Program Read More