plusdigit.com
Program to find Hcf/lcm of a given number in C -
#include stdio.h int main() { int a, b, x, y, t, gcd, lcm; printf(“Enter two integersn”); scanf(“%d%d”, &x, &y); a = x; b = y; … Read More
PlusDigit