Pointer Arithmetic Example const size_t P_Dim = 3; double array[P_Dim]; double* point; *array = 42.0; *(array + 1) = 42.5; *(array + 2) = 43.0; point = array + 1; cout << *(point + 1) << endl; Outputs 43.0