Chapter:

Recursive-program-in-c

C Program to find LCM of two Numbers using Recursion

LCM: Least Common Multiple of two numbers is the number that is a common multiple of the both the numbers.

Below is a program to find LCM of two numbers using recursion.

#include<stdio.h>


int find_lcm(int, int);   // function prototype declaration


int main()

{

    int a, b, lcm;

    printf("\n\nEnter 2 integers to find LCM of:\n");

    scanf("%d%d", &a, &b);

    lcm = find_lcm(a,b);    // function call

    printf("\n\n LCM of %d and %d is: %d\n\n", a, b, lcm);

    return 0;

}


int find_lcm(int a, int b)  // function definition

{

    /*

       ....Show More

All Chapters

View all Chapter and number of question available From each chapter from C-programming-