[Solved] I need help trying to understand this piece of code about structures and pointers [closed]
[ad_1] p is a pointer to a structure – this means that p ‘holds’ the starting address for a structure in memory — Hence: p = d.elmts+i represents the starting address in memory, for the current structure (i represents the address offset). In this example memory has been allocated for ‘dictSize’ structures (i.e. the number … Read more