I am trying to use pointers to preload an array. I know how to do it as an array but the pointer method has my head twisted around.

The Array is defined as Array[Size]

If I used a function void load (int *loadmem) , how would I load the entire array with a single ( non-zero ) interger value. Would a FOR loop work from 0 to Size. But how do I tie the Array to a pointer and then increment the location in the pointer?