How do i delete information from a array file to make room for the most recent information if ??

 

How do i delete information from a array file to make room for the most recent information if ??

 

I'm not quite sure what you mean, but if I guessed right try something like

// index 0 is oldest & N is newest
for(ix = 0; ix < myArrayLen-1; ix++)
{
 // shuffle entries
 myArray[ix] = myArray[ix+1];
}
myArray[myArrayLen-1] = myNewValue;

NB code just type, not compiled or checked