Arrays - Programming

Q1:

Are the expressions arr and &arr same for an array of 10 integers?

A Yes

B No

ANS:B - No

Both mean two different things. arr gives the address of the first int, whereas the &arr gives the address of array of ints.