Code:
#include stdio.h
int lcm(int, int);
int main()
{
int a, b, result;
int prime[100];
printf("Enter two numbers: ");
scanf("%d%d", &a, &b);
result = lcm(a, b);
printf("The LCM of %d and %d is %d\n", a, b, result);
return 0;
}
int lcm(int a, int b)
{
static int common = 1;
if (common % a == 0 && common % b == 0)
{
return common;
}
common++;
lcm(a, b);
return common;
}
Output:
Enter two numbers: 456
12
The LCM of 456 and 12 is 456
Enter two numbers: 45 75
The LCM of 45 and 75 is 225
More C Programs: