
Patrick B. answered 05/20/19
Tutor
4.7
(31)
Math and computer tutor/teacher
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++;