Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
// e.g.
int x;
int &ref = x; // "ref" is assigned the ADDRESS of "x"
// e.g.
int x = 5;
int &ref = x;
cout << ref; // here, even though "ref" is really just an
// address, it dereferences itself, so this
// line is equivalent to "cout << x"