Lets say I have an int array[ 5 ] = {4,3,2} and I want to put a five at the start. It would look like {5,4,3,2}. One way would be to take a one value and put it one address ahead, is there a way I can just push whole array by one index and put my 5 at top?