Computer Science, asked by maltimalti088, 11 months ago

define array in c language for 10 class​

Answers

Answered by BhuvanaBudati
0

Answer:

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.

Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

The elements of the array share the same variable name but each element has its own unique index number (also known as a subscript). An array can be of any type, For example: int , float , char etc.

HOPE IT HELPS ....................

MARK THIS AS BRAINLIEST

Similar questions