For example:

int a = 5;
int &b = a;
++b;

b and a are both 6

Greetings