very simple, is there any speed or memory diference beetwen this two whiles?
int x = 0, y = 0;
while(x < size)
{
y++;
array[x] = array[y];
x++;
}
and
int x = 0;
while(x < size)
{
array[x] = array[x++];
}