Computer Science, asked by krishna8831, 1 year ago

How we can access elements of one dimensional array

Answers

Answered by Anonymous
0
This is a key bit of information to remember. Mistakes in array indices are the cause of many bugs in computer programs. If there are n elements in an array and you try to access the element of the array at index n, then you will get a subscript out of range error because the index of the last cell is n-1, not n.

krishna8831: correct h
Similar questions