Computer Science, asked by achutamvarpe45, 9 months ago

If int list [100]; is an array , then which are first and last elements ?​

Answers

Answered by digarkarki108
0

Answer:

If int list [100] is an array then the first element of that list is list[0] and the last element of the list is list[99]

Explanation:

Since the index of the array starts from 0 to n-1 where n is the size of the array.

Similar questions