Reference examples
int x[3] = { 8, 1, 6 };
int i = 2;
int& y = x[i];
i = 1;
y = 7; // x is now { 8, 1, 7 }
Previous slide
Next slide
Back to first slide
View graphic version