Anything?, but its memory address.
Anything? :-D
I guess &a
is equivalent to &a[0]
Both return the address of the first element. The only visible difference is that "&a" uses an operator to obtain the address.
Wazzak
Last edited on
a
is an array; it can be implicitly converted to a pointer to its first element.
&a
is a pointer to the array a
. *&a
is (a refrence to) a
.
The type pointer to array is not the same as the the type pointer to the first element of the array.
Last edited on
&a has type int ( * )[100]
a in expressions has type int *