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

Question: Are the expressions arr and &arr same for an array of 10 integers?
[A].

Yes

[B].

No

Answer: Option B

Explanation:

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