Added the disadvantage of the array. (#21379)

This commit is contained in:
Vishal Kichloo
2018-11-13 04:03:42 +05:30
committed by Christopher McCormack
parent 2eb506f7da
commit 958c086a8e

View File

@@ -168,3 +168,5 @@ The reason for C not checking the indexing bound is simple: C is an efficient la
- When you try to access the last element of the array. Suppose the length of the array A be 4 and while accessing the last element as
A[4] will return an error, as the the indexing starts from 0.
But, the disadvantage of array is that the memory required should be allocated before the run time of the program.