Computer Science, asked by soumjoshi273, 1 year ago

what is array in c language​

Answers

Answered by yarav2514
1

Explanation:

Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Answered by DiyaTsl
0

Answer:

ARRAYS IN C LANGUAGE :

  • Array in C can be defined as a method to join multiple entities of similar type into a larger group. These entities or elements can be int, float, char, double or user-defined structures, and data types.
  • An array is defined as the collection of data items of a similar type stored in contiguous locations.
  • Arrays are the derived data type in the C programming language that can store primitive data types like int, char, double, float, etc.
  • It can also store the collection of derived data types like pointers, structure. Array is the simplest data structure in which each data element can be accessed randomly by its index number.

#SPJ2

Similar questions