1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Use
storing and managing bigger blocks of data
provide a simple way of storing multiple instances ‘a sequence’ of the same data type
Declaring
use []
Indexed from…
0
Initialiser
can initialise only part of the array
starting from 0
Arrays
named contiguous data blocks in memory
don’t know how many elements are initialised
Arrays won’t Grow if…
you access memory before or after the allocated space
Array Bounds
C compiler won’t protect you
need to track these yourself and code defensively