I've got array on the top of the code
int numberArray[] = {1, 2, 3, 4, 5};
And I would want to bring pointer from this array to another pointer in function
void movePointer(int* anotherPointer)
{
anotherPointer = numberArray;
}
And now I would use anotherPointer in the rest of code. How I should to do this? I thougth about pointer from pointer, but I received nothing interesting.