Pointers int main() { int i = 42; int *p = &i; *p = 3; p = NULL; if (p) cout << *p << endl; }