// Problem: Write a C program to insert an element x at a given 1-based position pos in an array of n integers. Shift existing elements to the right to make space.
This function inserts a value (or multiple values) into an array at any given position. You provide the array, the index (position) in the array to insert at, as well as at least one value to insert, ...