12345678
int GetAddy() {.... float addy = &some_variable; return address; }
12345678910
void ModifyInt(int& theInt) { theInt = 5; } ... int myInt = 0; ModifyInt(myInt); ...