#include <iostream.h> int main() { int x = 7; int & ref = x; ref = 7; int y = 10; ref = y; cout << "x: " << x; cout << " y: " << y; cout << " ref: " << ref << endl; return 0; }