/ Published in: C++
Another name for the same thing
// & =
// &
// & =
// &
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//<type> &<alias> = <reference var> //<type> &<alias> //Example: int a; int &r = a; // declares a reference to the integer object "a"