Basic of Array - Array Problem

Array is a Linear datatype and having contigous Memory allocation. It is very simple datatype in which we can easily access any element by using their index.

Property of Array

  • Array Index start with 0.
  • We can access any element with O(n) complexity.
  • We can fix the size of array.
  • Array having Contiguous Memory Allocation.

Array memory Representation.