#include <iostream>
using namespace std;

int main(void) {
  int *t = NULL;
  int &k = *t;

  cout << "link address " << &k << endl;
  cout << "link is NULL " << (&k == NULL) << endl;

  return 0;
}
