Computer Science, asked by aneeshraio666, 5 months ago

What is an array? write their function also​

Answers

Answered by FABEAUTY
1

Answer:

An array is a primitive C-style construct that consists of many items stored consecutively and accessed through a single variable name (and indexing) This is actually done by remembering the starting address of an array, and computing an offset.

Explanation:

hope it is helpful

Answered by chhotiv03
1

Answer:

An array is not a type. An array is a primitive C-style construct that consists of many items stored consecutively and accessed through a single variable name (and indexing) The name of an array acts as a special kind of variable -- a pointer -- which stores the starting address of the array. ...

Similar questions