what is array of pointer in data structure
Answers
Answered by
1
The one dimensional or two-dimensional pointer array is called array of pointer. For example, int ptr[5]; Where ptr is array pointer variable and size of array is 5. i.e., ptr[0], ptr[l], ptr[2], ptr[3], ptr[4].
Answered by
1
Answer:
an array of pointers is an indexed set of variables, where the variables are pointers
The array of structures in C are used to store information about multiple entities of different data types. The array of structures is also known as the collection of structures.
Similar questions