Home / C Programming / Arrays :: Discussion

Discussion :: Arrays

  1. Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements?

  2. A.

     arr[6]

    B.

     arr[7]

    C.

     arr{6}

    D.

     arr{7}

    E.

     None of these

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Array index always starts with 0.


Be The First To Comment