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 <stdio.h> int  main(){      int  x,y,m,i;     printf( "Inse...

Read more »

Find largest and smallest number in an array Find largest and smallest number in an array

C program to find largest and smallest in an array ! #include <stdio.h> int  main(){    int  a[50],size,i,big,small;   pr...

Read more »
 
Top