/ Published in: C++
Another name for the same thing // & = // &
Expand |
Embed | Plain Text
//<type> &<alias> = <reference var> //<type> &<alias> //Example: int a; int &r = a; // declares a reference to the integer object "a"
You need to login to post a comment.
