Arrays in C Programming - Array in C
Learn c - c tutorial - Arrays in C Programming - c examples - c programs
Arrays in C Programming
- 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.
- 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.
- Object that holds a fixed number of values and an array is a container of one type.
- The length of an array is established is created after creation and its length is fixed.
Learn c - c tutorial - Arrays in C Programming - c examples - c programs