Pointer arrays are a useful tool for mapping peripheral registers to a driver. There are many advantages to using pointer arrays such as simplified initializations and the ability to generate a ...
`m` is an array with three elements, but each element has type `int *`. In other words, `m` is **an array of pointers**. Conceptually, each entry of `m` points to another location in memory, which can ...