Computer Science, asked by 1234456upin, 5 months ago

What is the upper bound of a Single Dimensional Array whose size is 100?​

Answers

Answered by Anonymous
1

Answer:

A one-dimensional array (or single dimension array) is a type of linear array. Accessing its elements involves a single subscript which can either represent a row or column index. As an example consider the C declaration int anArrayName[10]; which declares a one-dimensional array of ten integers.

Similar questions