img
Question:
Published on: 23 January, 2022

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

Answer:

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.

Random questions