#include using namespace std; int main(){ int n=44; cout << "n = " << n << endl; // prints the value of n cout << "&n = " << &n << endl; // prints the address of n }