Computer Science, asked by antasd3794, 9 months ago

Write A C Program To Find Hcf Of 4 Given Numbers Using Recursive Function

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
3

cc

type pblil

bold oder

hcf =4=2

Answered by ayush7652051895sl
0

Explanation:

C Program to find HCF of a given Number using Recursion:

int hcf(int, int);

int main()

{

int a, b, result;

printf("Enter the two numbers to find their HCF: "); scanf("%d%d", &a, &b);

result = hcf(a, b);

printf("The HCF of %d and %d is %d.\n", a, b, result);

}

int hcf(int a, int b)

{

while (a != b)

{

if (a > b)

{

return hcf(a - b, b);

}

else { return hcf(a, b - a);

}

}

return a;

}

#SPJ3

Similar questions