/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Write a program to find hcf of two numbers */ // File Name - amit0711202501.c (LAB), APC-PRAC-019.c (Local) // This code has not been compiled. // If you find any issues, please create a new issue on GitHub regarding them. // Go to this link to create a new issue: https://github.com/notamitgamer/bsc/issues #include int main() { int a, b, temp, temp_a, temp_b; printf("Enter the a and b : "); scanf("%d %d", &a, &b); temp_a = a, temp_b = b; while (b > 0) { temp = a; a = b; b = temp % b; } printf("\nHCF of %d and %d is : %d\n", temp_a, temp_b, a); return 0; }