C program : How to find HCF of two numbers #include int main(){ int x,y,m,i; printf("Insert any two number: "); scanf("%d%d",&x,&y); if(x>y) m=y; else m=x; …
Find largest and smallest number in an array
C program to find largest and smallest in an array ! #include int main(){ int a[50],size,i,big,small; printf("\nEnter the size of the array: "); scanf("%d",&size); printf("\nEnter %d elements…
Subscribe to:
Posts (Atom)