c program to find HCF of two numbers c program to find HCF of two numbers

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;     …

Read more »
03 Aug 2015

Find largest and smallest number in an arrayFind 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…

Read more »
03 Aug 2015
 
Top