Skip to main content

All Questions

1 vote
2 answers
56 views

What value does a pointer to pointer get assigned when points to a dynamically allocated memory?

Consider the following case: int **my_array = new int*[10]; What do we assign to my_array here? my_array is a pointer that points to what? Is there any way to iterate through my_array (the pointer) ...
user5241471's user avatar