ARRAY
An array is a fixed size scequence collection of element of the same data type.It is simply a
grouping of like type data.In its simplest form,an array be used to represent a list of number
or a list of names.An array is a collection of similar data type elements.some examples where the concept of an array can be used.
An array is a fixed size scequence collection of element of the same data type.It is simply a
grouping of like type data.In its simplest form,an array be used to represent a list of number
or a list of names.An array is a collection of similar data type elements.some examples where the concept of an array can be used.
- List of temperatures records every hour in a day,or a month, or a year.
- List of employee in an organization.
- List of products and their post sold by a store.
- Test score of a class of student.
- List of consumers and their telephones number and etc.
Since an array provide a convent structure for represent data, it is classified as one of the data structure in C.
Comments
Post a Comment