Q:

C++ Program To Find The Address Of Variable

belongs to collection: Simple Programs in C++ Programming

0

Write A C++ Program To Find The Address Of Variable .


Logic :- 

We Can find the address of any variable by using ' & ' operator we can find address of variable in memory.

You can find address of variable syntax is given Below 
 
Syntax :-
cout << "Address Of First Variable :\n\n";
cout << &first <<"\n";

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <iostream>
using namespace std;

int main ()
{
   int  first,sec;
   
   cout<<"Enter The Value Of First and Second Variable \n\n";
   cin>>first>>sec;

   cout << "Address Of First Variable :\n\n";
   cout << &first <<"\n";

   cout << "\nAddress Of Second Variable :\n\n";
   cout << &sec << endl;

   return 0;
}

 

Output:

Enter The Value Of First and Second Variable 

10000

20000

Address Of First Variable :

0x7ffe2a5e1aa0

Address Of Second Variable :

0x7ffe2a5e1aa4

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< C++Program To Swap A Number Without Using Third Va...