Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions arrays/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down