Home / C Programming / Arrays :: Discussion

Discussion :: Arrays

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

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    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