Arrays

Arrays

Array are the simplest data structures, build into most programming languages and we use them to store list of items like list of numbers, string, objects and literally anything. These items get stored sequentially in memory. In many languages arrays are static – which means – when we allocate them we must specify their size […]