Code:
#include <iostream.h>
void main(){
  int a = 1;
  cout<< &a;
}
is the address output the actual physical memory address of the variable or some logical address.