What is the benefit of using arrays of pointers instead of several pointer variables?

Added 3 years ago
Active
Viewed 1242
Ans

The benefit of using arrays of pointers is that you can use a for loop to step through each element of the array to access memory addresses that are assigned to the array. This must be done in order to efficiently access and reorder the values stored in memory.



Related Questions