TO SORT THE GIVEN LIST OF ELEMENTS USING INSERTION SORT
//TO SORT THE GIVEN LIST OF ELEMENTS USING INSERTION SORT// #include<stdio.h> #include<conio.h> void main() { int n,i,k,ptr,temp,A[10]; clrscr(); printf(“Enter the size of the array:”); scanf(“%d”,&n); printf(“Enter the elements in the …