1.0200   How do we find which addresses we are using in RAM?

 

The c/c++ programming language allows to find the address of any variable location. We can find the address of a scalar variable:

 

            int i;

            cout << &i;

 

or the base address of abstract variable:

 

            float f [24][12];

            printf(“%p”, f);