Computer Science, asked by goodjoy2006, 9 months ago

In an array of the value of number of elements is n then what will be the range of Index values?(c++)

Answers

Answered by anujkrovyoqq
0

Answer:

0 to (n-1)

Explanation:

array's firat index starts from zero and it ends at (n-1)

EXAMPLE : If arr[10] then. last index will be 9

Similar questions