Computer Science, asked by wa912861, 4 months ago

explain array in c ?

Answers

Answered by reecha28880
12

Explanation:

An array is a collection of data items, all of the same type, accessed using a common name.

A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array, though specific implementations may.

Some texts refer to one-dimensional arrays as vectors, two-dimensional arrays as matrices, and use the general term arrays when the number of dimensions is unspecified or unimportant.

Answered by himanisharma2292004
0

Answer:

An array is a variable that can store multiple values. For example, if you want to store 100 integers, you can create an array for it. int data[100];

Similar questions