C Program To Find GCD and LCM of Two Numbers using Euclidean algorithm
Satish B
http://technotip.com/6811/c-program-to-find-gcd-and-lcm-of-two-numbers-using-euclidean-algorithm/
Lets write a C program to find GCD(Greatest Common Divisor) or HCF(Highest common Factor) and LCM(Least Common Multiple) of 2 user entered integer numbers using Euclidean algorithm.
GCD or HCF: Largest Integer that can divide both the numbers without any remainder or with 0 as remainder.
Least Common Multiple(LCM): is the smallest positive integer that is perfectly divisible by the given integer values.
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=liDKluluORo
10134938 Bytes