Hi
int** numberLists = new int*[count];
I'm having difficulties understanding this line of code, I've just started programming in c++.
I think I got the basics of pointers but I can't find any helpful "enough" info about arrays of pointers.
I understand that an array of pointers to integers is assigned to variable numberLists which is a pointer to a pointer to an integer. Unfortunately that doesn't get me very far.
Thanks.