Master contiguous memory blocks, 2D matrices, array decay to pointers, string handling, and avoid buffer overflows.
A collection of elements of the same data type stored in contiguous memory.
Matrices and tables. Arrays of arrays.
How multi-dimensional arrays are flattened in RAM.
The concept of arrays "decaying" into pointers when passed to functions.
Character arrays terminated by a null character '\0'.
strlen(): Length excluding \0strcpy(): Copy string (Unsafe)strcat(): Concatenatestrcmp(): Compare