Posts

Showing posts from February, 2023

Write C program of the string topic | C language | strings very important topic of the C language

Image

Write C program to add hours, minutes and seconds | C language |

Image

Write a c programe to find lcm of given numbers | c language |

rite a c programe to find the lcm of two integers ? #include void main() { int l, a, b; printf("Enter twoineger numbers: "); scanf("%d%d", &a, &b); for(l= a>b:a?b;l b:a?b) if(l%a==0&&l%b==0) break; printf("The lcm of two integers %d and %d : %d\n",a,b,l); }