what is array in c programming
Answers
Answered by
1
An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional arrayis like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in anarray, though specific implementations may.
Answered by
2
Array are reffered to as structured data types. An array is defined as finite ordered collection of homogenous data, stored in contiguous memory locations.
Similar questions