Inactive Tutor answered 05/20/19
Tutor
New to Wyzant
Yes
for array A,
A = &A[0] is the base pointer to the array, and points at the first element.
So, for pointer P,
P = A;
and
P = &A[0];
is the same statement;
you can then walk the array by doing P++;