employer cover photo
employer logo
employer logo

LatentView Analytics

Is this your company?

LatentView Analytics interview question

Write a code for calculating LCM and GCD

Interview Answers

Anonymous

Sep 12, 2014

#include int main() { int a, b, x, y, t, gcd, lcm; printf("Enter two integers\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 and %d = %d\n", x, y, gcd); printf("Least common multiple of %d and %d = %d\n", x, y, lcm); return 0; }

1

Anonymous

Aug 22, 2014

It could have been better had the interviewers lets us knew for which project we are being interviewed on.