what are array in C programming ?
tom75:
collection of elements having same datatype
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 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.
Similar questions