Saved Bookmarks
| 1. |
What is array of pointer in data structure |
|
Answer» 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]. |
|