how to point to next array using pointer c++

int arr[] = {10, 20, 30, 40, 50};
int *ptr = arr; // ptr points to the first element of the array
ptr++; // ptr now points to the next element of the array