

InterviewSolution
Saved Bookmarks
1. |
Are the expressions and same for an array of 10 integers? |
Answer» Both mean two different things. arr gives the address of the first int, whereas the &arr gives the address of array of ints. | |