169k views
5 votes
or each array created, the name of the array becomes the name of the pointer constant created by the compiler for the array, and the ____ of the first location reserved for the array is stored in this pointer.

User Ahans
by
4.7k points

1 Answer

5 votes

Answer:

The answer is "Starting address"

Step-by-step explanation:

Arrays are a type of data structure that can store a fixed size successive assortment of components of a similar kind. An Array is used to store an assortment of data, yet it is regularly more valuable to consider a cluster an assortment of factors of a similar sort.

Rather than proclaiming singular factors, for example, number0, number1, ..., and number99, you declare one Array variable, for example, numbers and use numbers[0], numbers[1], and ..., numbers[99] to speak to singular factors. A particular component in a cluster is gotten to by a list.

All Arrays comprise of bordering memory areas. The most minimal address compares to the first element and the most highest address to the last element.

User Lavaturtle
by
4.7k points