Reference in C++By DarkHorse / September 4, 2022 #include <iostream> using namespace std; int main() { int a=10; int &b=a;// &b is the reference of a //now a&b will be the same address of value 10 //example cout<<b<<endl; }