given
double ar[20];

and a function call
function(ar,size);

is this equivalent to
function(&ar[0],size)
?????

whats the difference between
function(ar+1,size)
and
function(&ar[1],size)
????