/* Insertion Sort */ /* Made By Gaurang */ /* gaurang85.tripod.com */ #include #include #include int array[20],num; void insert(int); int main() { int i,j,pos; clrscr(); printf("\n Enter No OF Numbers to sort : "); scanf("%d",&num); //get the numbers from user and put it in an array for(i=0;iarray[i]) { pos=i; } } insert(pos); } //print sorted array printf("\n\n"); for(i=0;i