Discussion :: Arrays
-
Are the expressions arr and &arr same for an array of 10 integers?
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.
Be The First To Comment