Reading Declarations in C
When reading code, follow these points: 1) * – pointer to 2) [] – array of 3) () – function returning 4) Start at the variable name 5) Read right first without crossing parenthesis 6) Then go left without crossing 7) Start inwards and move outwards. Reading is right to left. Examples are provided for different variable types.
Read More Reading Declarations in C