1 -> An array is an aggregate data type that lets us access many variables of the same type through a single identifier.
2 -> arrayName[1]
3 -> the size or length of a array are the amount of variables inside a array
1 -> int arrayName[3]{ 1, 2, 3 };
2 -> with function sizeOf(arrayName)
3 -> sizeOf(arrayName[0])
4-> we may get a segmentation fault which at least tell there’s a problem. In the end, it is up to make sure that your program respects the bounds of its arrays .