In insertion sort,
- how can we insert a new integer into an array of integers?
- The memory for the array will be allocated during compilation,so we cannot increase the size of array,Even if we allocate some extra space,what should we do if the required memory exceeds the allocated memory?
- should we create a new array for the insertion of each and every integer?
- What should we do if we want insert more number of integers into the sorted array?
- Can we do this with pointers?