Computer Science, asked by rafique2, 1 year ago

what are array in C programming ?


tom75: collection of elements having same datatype
rafique2: thanks
tom75: ok bhai
ArohiMathur: Collection Variable. A collection variable is a composite variable whose internal components, called elements, have thesame data type. The value of a collectionvariable and the values of its elements can change. You reference an entire collectionby its name.
rafique2: thnxxx a lot bhai

Answers

Answered by ArohiMathur
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