Creating and Using References for integer : reference « Data Type « C++






Creating and Using References for integer

  
#include <iostream>

int main()
{
   using namespace std;
   int  intOne;
   int &rSomeRef = intOne;

   intOne = 5;
   cout << "intOne: " << intOne << endl;
   cout << "rSomeRef: " << rSomeRef << endl;

   rSomeRef = 7;
   cout << "intOne: " << intOne << endl;
   cout << "rSomeRef: " << rSomeRef << endl;

   return 0;
}
  
    
  








Related examples in the same category

1.constant references
2.returning a reference to a string
3.using references for int
4.Reassigning a reference
5.Taking the Address of a Reference
6.swap() Rewritten with References
7.Passing by Reference Using Pointers
8.Passing Objects by Reference
9.Passing References to Objects
10.Returning multiple values from a function using references
11.Data Slicing With Passing by Value
12.References for int type variable