From b0fc97dfd1f0e8fefa20ef1d0fd35478a22d10f0 Mon Sep 17 00:00:00 2001 From: harrywalia019 <41566603+harrywalia019@users.noreply.github.com> Date: Wed, 2 Oct 2019 23:43:14 +0530 Subject: [PATCH] Update README.md --- arrays/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/arrays/README.md b/arrays/README.md index 1a7282e8..6480600a 100644 --- a/arrays/README.md +++ b/arrays/README.md @@ -3,6 +3,7 @@ Arrays are a fundamental part of programming. An array is a list of data. We can store a lot of data in one variable, which makes our code more readable and easier to understand. It also makes it much easier to perform functions on related data. The data in arrays are called **elements**. +Arrays are linear data strucutres as data is stored in linear form in the memory or we can say that contigenous memory allocation takes place in an Array. Here is a simple array: