Indexing Example const size_t P_Dim = 3; double array[P_Dim]; double* point; point[0] = 42.0; point[1] = 42.5; point[2] = 43.0; point = array + 1; cout << point[1] << endl; Outputs 43.0