Question: Are the expressions arr and &arr same for an array of 10 integers?
[A].Yes
No
[A].
[B].
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.